Fix formatting issues in community environments - Applied black, isort, trailing whitespace, and end-of-file fixes - Remaining flake8 issues (unused imports, line length) noted for future cleanup

This commit is contained in:
Shannon Sands 2025-05-23 13:33:13 +10:00
parent e85a170c34
commit 7f2e1a4f90
34 changed files with 1560 additions and 821 deletions

View file

@ -1,5 +1,6 @@
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
# Add any specific settings required by the application here
# For example:
@ -10,4 +11,5 @@ class Settings(BaseSettings):
env_file = ".env"
env_file_encoding = "utf-8"
settings = Settings()
settings = Settings()