From 25fa2db8a7b04da596ebd95a170f69e29c2ace54 Mon Sep 17 00:00:00 2001 From: Seth Morton Date: Sun, 26 Feb 2023 21:10:48 -0800 Subject: black --- natsort/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/natsort/utils.py b/natsort/utils.py index 733bb1b..062b1c6 100644 --- a/natsort/utils.py +++ b/natsort/utils.py @@ -344,8 +344,7 @@ def natsort_key( elif isinstance(val, Iterable): # Must be parsed recursively, but do not apply the key recursively. return tuple( - natsort_key(x, None, string_func, bytes_func, num_func) - for x in val + natsort_key(x, None, string_func, bytes_func, num_func) for x in val ) else: # Anything else goes here return num_func(val) -- cgit v1.2.1