From e7822aa364fcc392476ded5537948292f7db2300 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Thu, 17 Feb 2022 18:37:51 -0800 Subject: Cleanup --- string_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'string_utils.py') diff --git a/string_utils.py b/string_utils.py index 4bec031..c995070 100644 --- a/string_utils.py +++ b/string_utils.py @@ -1649,7 +1649,7 @@ def ip_v4_sort_key(txt: str) -> Optional[Tuple[int, ...]]: if not is_ip_v4(txt): print(f"not IP: {txt}") return None - return tuple([int(x) for x in txt.split('.')]) + return tuple(int(x) for x in txt.split('.')) def path_ancestors_before_descendants_sort_key(volume: str) -> Tuple[str, ...]: @@ -1664,7 +1664,7 @@ def path_ancestors_before_descendants_sort_key(volume: str) -> Tuple[str, ...]: ['/usr', '/usr/local', '/usr/local/bin'] """ - return tuple([x for x in volume.split('/') if len(x) > 0]) + return tuple(x for x in volume.split('/') if len(x) > 0) def replace_all(in_str: str, replace_set: str, replacement: str) -> str: -- cgit v1.3