From 3f8b7bb3ddd6590d07a4e6bb55879e81ae8d41df Mon Sep 17 00:00:00 2001 From: dshivashankar Date: Mon, 8 Apr 2024 10:26:15 +0530 Subject: [PATCH] Fix for easy enabling back of sort_imports --- bin/tidy-imports | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tidy-imports b/bin/tidy-imports index 82ac94e9..c07106e5 100755 --- a/bin/tidy-imports +++ b/bin/tidy-imports @@ -157,7 +157,7 @@ def main(): # TODO: disable sorting until we figure out #287 # https://github.com/deshaw/pyflyby/issues/287 # from pyflyby._imports2s import sort_imports - # sorted_imports = sort_imports(x) + # x = sort_imports(x) if options.canonicalize: x = canonicalize_imports(x, params=options.params) return x