-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove py2 from isort #19
Conversation
isort.cfg
Outdated
@@ -22,4 +22,4 @@ default_section=THIRDPARTY | |||
known_first_party=readthedocs,readthedocsinc | |||
known_third_party=mock,builtins | |||
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER | |||
add_imports=from __future__ import division, from __future__ import print_function, from __future__ import unicode_literals | |||
remove_imports=from __future__ import division, from __future__ import print_function, from __future__ import unicode_literals |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove_imports
😍
(I didn't find it on its docs, though)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it was hard to find, I saw this option on the cli, and then I searched on the code
This is causing some problems.
Merging because this is what we are using for readthedocs/readthedocs.org#4543 |
No description provided.