ruff: add S linter

this mostly adds a timeout=60 to all requests

this does mainly wants a timeout to all requests functions, since when
left out they hang infinitly.
I added a timeout of 60s, which is probably way too high, but since
before this there was none, I guess it's an improvement?
This commit is contained in:
Marcel Hellwig
2026-01-04 14:49:05 +01:00
parent 1857cf501c
commit 5368cad77a
13 changed files with 35 additions and 22 deletions

View File

@@ -5,5 +5,5 @@ class DbConfig(BaseSettings):
host: str = "localhost"
port: int = 5432
user: str = "MediaManager"
password: str = "MediaManager"
password: str = "MediaManager" # noqa: S105
dbname: str = "MediaManager"