Skip to content

Commit

Permalink
aiohttpparser: Use double quoted empty string
Browse files Browse the repository at this point in the history
This should make the PR pass the style check
  • Loading branch information
Kochab committed Sep 25, 2018
1 parent 1ddb55d commit c0cee7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webargs/aiohttpparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async def parse_json(self, req, name, field):
try:
json_data = await req.json()
except json.JSONDecodeError as e:
if e.doc == '':
if e.doc == "":
return core.missing
else:
raise e
Expand Down

0 comments on commit c0cee7d

Please sign in to comment.