Skip to content

Commit

Permalink
Disable import sorting for now.
Browse files Browse the repository at this point in the history
This should take care of deshaw#287 until we reimplement the sorting logic.
  • Loading branch information
Carreau committed Feb 22, 2024
1 parent 335c95b commit be5b3bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/tidy-imports
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,10 @@ def main():
remove_unused=options.remove_unused,
add_mandatory=options.add_mandatory,
)
sorted_imports = sort_imports(x)
# TODO: disable sorting until we figure out #287
# https://github.com/deshaw/pyflyby/issues/287
# sorted_imports = sort_imports(x)
sorted_imports = x
if options.canonicalize:
cannonical_imports = canonicalize_imports(sorted_imports, params=options.params)
else:
Expand Down

0 comments on commit be5b3bc

Please sign in to comment.