Skip to content

Commit

Permalink
Merge pull request #3284 from digitalfabrik/fix/ruff-complaint
Browse files Browse the repository at this point in the history
Fix sudden ruff complaint
  • Loading branch information
charludo authored Dec 11, 2024
2 parents 4b96727 + 91ad980 commit f00b63c
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 f00b63c

Please sign in to comment.