Skip to content

Commit

Permalink
fix: Add typing for kwargs dict
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolai Willems committed Oct 29, 2020
1 parent cc89d36 commit ca38439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databases/backends/postgres.py
Expand Up @@ -44,7 +44,7 @@ def _get_dialect(self) -> Dialect:
def _get_connection_kwargs(self) -> dict:
url_options = self._database_url.options

kwargs = {}
kwargs = {} # type: typing.Dict[str, typing.Any]
min_size = url_options.get("min_size")
max_size = url_options.get("max_size")
ssl = url_options.get("ssl")
Expand Down

0 comments on commit ca38439

Please sign in to comment.