Skip to content

Commit cb896cd

Browse files
Add support for reversing import sort
1 parent 7802b4f commit cb896cd

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

isort/output.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,15 @@ def sorted_imports(
5454
key=lambda key: sorting.module_key(
5555
key, config, section_name=section, straight_import=True
5656
),
57+
reverse=config.reverse_sort,
5758
)
5859

5960
from_modules = parsed.imports[section]["from"]
6061
if not config.only_sections:
6162
from_modules = sorting.naturally(
62-
from_modules, key=lambda key: sorting.module_key(key, config, section_name=section)
63+
from_modules,
64+
key=lambda key: sorting.module_key(key, config, section_name=section),
65+
reverse=config.reverse_sort,
6366
)
6467

6568
straight_imports = _with_straight_imports(
@@ -233,6 +236,7 @@ def _with_from_imports(
233236
config.force_alphabetical_sort_within_sections,
234237
section_name=section,
235238
),
239+
reverse=config.reverse_sort,
236240
)
237241
if remove_imports:
238242
from_imports = [

isort/sorting.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ def section_key(line: str, config: Config) -> str:
9696
return f"{section}{len(line) if config.length_sort else ''}{line}"
9797

9898

99-
def naturally(to_sort: Iterable[str], key: Optional[Callable[[str], Any]] = None) -> List[str]:
99+
def naturally(
100+
to_sort: Iterable[str], key: Optional[Callable[[str], Any]] = None, reverse: bool = False
101+
) -> List[str]:
100102
"""Returns a naturally sorted list"""
101103
if key is None:
102104
key_callback = _natural_keys
@@ -105,7 +107,7 @@ def naturally(to_sort: Iterable[str], key: Optional[Callable[[str], Any]] = None
105107
def key_callback(text: str) -> List[Any]:
106108
return _natural_keys(key(text)) # type: ignore
107109

108-
return sorted(to_sort, key=key_callback)
110+
return sorted(to_sort, key=key_callback, reverse=reverse)
109111

110112

111113
def _atoi(text: str) -> Any:

0 commit comments

Comments
 (0)