Skip to content

Commit

Permalink
Fix sudden ruff complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
charludo committed Dec 10, 2024
1 parent c391eaa commit 91ad980
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integreat_cms/core/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ def application(environ: dict[str, str], start_response: Callable) -> WSGIHandle
os.environ.setdefault(f"INTEGREAT_CMS_{KEY.upper()}", VALUE)

# Read config from environment
for key in environ:
for key, value in environ.items():
if key.startswith("INTEGREAT_CMS_"):
os.environ[key] = environ[key]
os.environ[key] = value

_application = get_wsgi_application()

Expand Down

0 comments on commit 91ad980

Please sign in to comment.