autopep8 and whitespace changes

This commit is contained in:
Timothy Farrell 2025-12-28 14:18:33 -06:00
parent fc3f311e56
commit d6870f814e
4 changed files with 29 additions and 11 deletions

19
.vscode/tasks.json vendored
View File

@ -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"
]
}
]
}

View File

@ -30,4 +30,5 @@ class Settings(BaseSettings):
env_file = ".env"
case_sensitive = False
settings = Settings() # type:ignore[call-arg]