From 3bc4daf1edc121cd633429187392227f2fa61885 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Thu, 8 Jul 2021 19:44:27 -0700 Subject: Lots of changes. --- list_utils.py | 1 - 1 file changed, 1 deletion(-) (limited to 'list_utils.py') 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 -- cgit v1.3