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
#!/usr/bin/env python
x = 1
y = 2
if x == 1:
if y == 2:
pass
elif y == 0:
pass
else:
pass
elif x == 2:
pass
else:
pass
After indentation:
#!/usr/bin/env python
x = 1
y = 2
if x == 1:
if y == 2:
pass
elif y == 0:
pass
else:
pass
elif x == 2: # this elif block is incorrectly indented
pass
else:
pass
I believe this issue is similar to the one that was fixed in #97.
The text was updated successfully, but these errors were encountered:
I'm running vim-python-pep8-indent @ commit 84f35c0
Before indentation:
After indentation:
I believe this issue is similar to the one that was fixed in #97.
The text was updated successfully, but these errors were encountered: