fix: More code cleanup
All checks were successful
Build Docker / Build Image (push) Successful in 2m9s

This commit is contained in:
2025-08-25 12:43:12 +10:00
parent 599c0df00c
commit 792688064e
2 changed files with 5 additions and 8 deletions

View File

@@ -17,8 +17,8 @@ def gunicornServer():
def load_config(self):
for key, value in self.options.items():
if key in self.cfg.settings and value is not None:
self.cfg.set(key.lower(), value)
if key in self.cfg.settings and value is not None: # type: ignore
self.cfg.set(key.lower(), value) # type: ignore
def load(self):
return self.application