Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #113 from lendingblock/master
Browse files Browse the repository at this point in the history
0.8.5
  • Loading branch information
lsbardel authored Sep 14, 2018
2 parents 75cc24b + 999fde1 commit ba2ff38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion openapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Minimal OpenAPI asynchronous server application
"""

__version__ = '0.8.4'
__version__ = '0.8.5'
4 changes: 2 additions & 2 deletions openapi/spec/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def insert_data(self, data, *, strict=True, body_schema='body_schema'):
return data

def get_filters(self, *, query=None, query_schema='query_schema'):
combined = MultiDict(self.request.query)
combined.update(query or {})
combined = MultiDict(query or ())
combined.update(self.request.query)
try:
params = self.cleaned(query_schema, combined, multiple=True)
except web.HTTPNotImplemented:
Expand Down
1 change: 0 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ Messages take the form:
}
```

PP
[aiohttp]: https://aiohttp.readthedocs.io/en/stable/
[asyncpg]: https://github.com/MagicStack/asyncpg
[dataclasses]: https://docs.python.org/3/library/dataclasses.html
Expand Down

0 comments on commit ba2ff38

Please sign in to comment.