summaryrefslogtreecommitdiff
path: root/natsort/utils.py
diff options
context:
space:
mode:
authorSeth Morton <seth.m.morton@gmail.com>2023-02-26 20:50:37 -0800
committerSeth Morton <seth.m.morton@gmail.com>2023-02-26 20:50:37 -0800
commit68355f34d5a8ce6dbbafa49085990a0007e8c301 (patch)
treefaaa7729030c074671f97f2bd333e953f2d380bd /natsort/utils.py
parentb670cd41286845f58a089b93c6c276a92141beca (diff)
downloadnatsort-68355f34d5a8ce6dbbafa49085990a0007e8c301.tar.gz
Run with newest black
Diffstat (limited to 'natsort/utils.py')
-rw-r--r--natsort/utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/natsort/utils.py b/natsort/utils.py
index 1e38bec..36cb436 100644
--- a/natsort/utils.py
+++ b/natsort/utils.py
@@ -341,7 +341,6 @@ def natsort_key(
try:
return string_func(cast(str, val))
except (TypeError, AttributeError):
-
# If bytes type, use the bytes_func
if type(val) in (bytes,):
return bytes_func(cast(bytes, val))