Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Wout Feys committed Dec 4, 2024
1 parent ea8943e commit 8964a99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aikido_zen/context/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ def __init__(self, context_obj=None, body=None, req=None, source=None):
self.set_body(body)

# Parse WSGI/ASGI/... request :
self.cookies = (
self.method
) = self.remote_address = self.query = self.headers = self.url = None
self.cookies = self.method = self.remote_address = self.query = self.headers = (
self.url
) = None
if source in WSGI_SOURCES:
set_wsgi_attributes_on_context(self, req)
elif source in ASGI_SOURCES:
Expand Down

0 comments on commit 8964a99

Please sign in to comment.