Skip to content

Commit

Permalink
remove stray print
Browse files Browse the repository at this point in the history
  • Loading branch information
amol- committed Feb 21, 2024
1 parent b1b59e6 commit f9a5d9e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/test_wsgi_middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ def __call__(self, env, start_response):
query_string = env['wsgi.input'].read().decode('utf-8')
else:
query_string = env['QUERY_STRING']
print(env['QUERY_STRING'], parse_qs(query_string))
resp = json.dumps(action(**parse_qs(query_string))).encode('utf-8')
start_response('200 OK', [('Content-Type','application/json')])
return [resp]
Expand Down

0 comments on commit f9a5d9e

Please sign in to comment.