This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JSON = Union[None, bool, str, int, List[JSON], Dict[str, JSON]] | |
| def plenty_o_nuttin(x: bool) -> JSON: | |
| if not x: | |
| return None | |
| else: | |
| return [False, "", 0, {'plenty': ['n', 'u', 't', 't', 'i', 'n']}] |