summaryrefslogtreecommitdiff
path: root/natsort/natsort.py
diff options
context:
space:
mode:
Diffstat (limited to 'natsort/natsort.py')
-rw-r--r--natsort/natsort.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/natsort/natsort.py b/natsort/natsort.py
index 3904ec5..ea83e48 100644
--- a/natsort/natsort.py
+++ b/natsort/natsort.py
@@ -677,7 +677,6 @@ def _split_apply(
# Choose the implementation based on the host OS
if platform.system() == "Windows":
-
from ctypes import wintypes, windll # type: ignore
from functools import cmp_to_key
@@ -695,7 +694,6 @@ if platform.system() == "Windows":
)
else:
-
# For UNIX-based platforms, ICU performs MUCH better than locale
# at replicating the file explorer's sort order. We will use
# ICU's ability to do basic natural sorting as it also better