diff options
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 |
