We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
After 2c38ff0 commit writing else: in nested if statement doesn't dedent it automatically.
else:
if
if foo: if bar: baz = True
If we insert new line at the end of this block and start writing else:, it stays at the same indentation level as the line above:
if foo: if bar: baz = True else: # Should be dedented by one indentation level.
The text was updated successfully, but these errors were encountered:
Thanks for the report!
#59 should fix it.
Sorry, something went wrong.
Fix indentation of "else" in nested "if" (#59)
2a7f8fd
Fixes #56.
No branches or pull requests
After 2c38ff0 commit writing
else:
in nestedif
statement doesn't dedent it automatically.If we insert new line at the end of this block and start writing
else:
, it stays at the same indentation level as the line above:The text was updated successfully, but these errors were encountered: