We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
$ isort --version _ _ (_) ___ ___ _ __| |_ | |/ _/ / _ \/ '__ _/ | |\__ \/\_\/| | | |_ |_|\___/\___/\_/ \_/ isort your imports, so you don't have to. VERSION 5.0.5 $ cat > example.py from somewhere import very_very_very_very_very_very_long_symbol # some comment $ isort -l 50 --tc example.py $ python3 example.py File "example.py", line 2 very_very_very_very_very_very_long_symbol, # some comment ^ SyntaxError: trailing comma not allowed without surrounding parentheses $ cat example.py from somewhere import \ very_very_very_very_very_very_long_symbol, # some comment
The text was updated successfully, but these errors were encountered:
Thanks for reporting! This is fixed with an additional regression test added in 5.0.6.
Thanks!
~Timothy
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: