diff options
| author | Scott Gasch <[email protected]> | 2021-07-08 19:44:27 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-07-08 19:44:27 -0700 |
| commit | 3bc4daf1edc121cd633429187392227f2fa61885 (patch) | |
| tree | 0663cf35f562c7023c914454c85050d502ad9f3c /list_utils.py | |
| parent | 5fd30ef12c100cbb936aa0fdb515b67cff4064db (diff) | |
Lots of changes.
Diffstat (limited to 'list_utils.py')
| -rw-r--r-- | list_utils.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/list_utils.py b/list_utils.py index 9a5d4fd..74f1cf3 100644 --- a/list_utils.py +++ b/list_utils.py @@ -15,7 +15,6 @@ def flatten(lst: List[Any]) -> List[Any]: >>> flatten([ 1, [2, 3, 4, [5], 6], 7, [8, [9]]]) [1, 2, 3, 4, 5, 6, 7, 8, 9] - """ if len(lst) == 0: return lst |
