Skip to content

Commit

Permalink
Merge pull request #104 from mat-work/master
Browse files Browse the repository at this point in the history
Fix Response validation
  • Loading branch information
maximdanilchenko authored Dec 5, 2020
2 parents 9b110f7 + e96db8b commit 397a485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp_apispec/decorators/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def wrapper(func):
func.__apispec__["responses"]["%s" % code] = {
"schema": schema,
"required": required,
"description": description,
"description": description or "",
}
return func

Expand Down

0 comments on commit 397a485

Please sign in to comment.