You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm curious if this behaviour is intended where isort doesn't reorder anything but combines comments attached to lines where I import the same module under two different names
isort --diff isort_comments.py
--- path/to/cwd/isort_comments.py:before 2021-01-03 18:20:37.072373+++ path/to/cwd/isort_comments.py:after 2021-01-03 18:22:04.439485@@ -1,2 +1,2 @@-import a # a comment-import a as b # b comment+import a # a comment; b comment+import a as b # a comment; b comment
The text was updated successfully, but these errors were encountered:
I'm curious if this behaviour is intended where isort doesn't reorder anything but combines comments attached to lines where I import the same module under two different names
The text was updated successfully, but these errors were encountered: