dotfiles/vscode/.vscode/extensions/kevinrose.vsc-python-indent-1.18.0/.github/ISSUE_TEMPLATE/bad_indentation.md
2024-08-19 17:03:43 -06:00

578 B

name about title labels assignees
Suboptimal Indentation Indentation is not working as desired indentation

What the code looks like before pressing enter:

def my_example():
    pass|  # Use "|" to show where the cursor is. Keep your code nice and short!

What I want the code to look like after pressing enter:

def my_example():
    pass
|

What the code actually looks like after pressing enter:

def my_example():
    pass
    |