autopep8 and whitespace changes
This commit is contained in:
parent
fc3f311e56
commit
d6870f814e
19
.vscode/tasks.json
vendored
19
.vscode/tasks.json
vendored
@ -26,5 +26,22 @@
|
||||
"problemMatcher": [
|
||||
"$python"
|
||||
]
|
||||
} ]
|
||||
},
|
||||
{
|
||||
"label": "AutoPEP8 Check",
|
||||
"type": "shell",
|
||||
"command": "uv run autopep8 app/**/*.py --diff",
|
||||
"problemMatcher": [
|
||||
"$python"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "AutoPEP8 Fix",
|
||||
"type": "shell",
|
||||
"command": "uv run autopep8 app/**/*.py --in-place",
|
||||
"problemMatcher": [
|
||||
"$python"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -30,4 +30,5 @@ class Settings(BaseSettings):
|
||||
env_file = ".env"
|
||||
case_sensitive = False
|
||||
|
||||
|
||||
settings = Settings() # type:ignore[call-arg]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user