Reputation: 73
print("Hello")
def world():
print("Hello")
world()
Gets corrected to:
print("Hello")
def world():
print("Hello")
world()
I have tried to:
Upvotes: 7
Views: 3043
Reputation: 1748
you can also configure python.formatting.autopep8Args
under your vscode setting.
Upvotes: 0
Reputation: 111
You can disable this by using the following configuration in your .vscode/settings.json
{
"python.formatting.provider": "autopep8",
"python.formatting.autopep8Args": [
"--ignore=E302"
]
}
Here are all the autopep8
features explained: https://github.com/hhatto/autopep8#features
Upvotes: 8