Skip to content

Commit

Permalink
Fix missing *args in async client
Browse files Browse the repository at this point in the history
  • Loading branch information
gacou54 committed Aug 30, 2023
1 parent 792df38 commit beaba0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyorthanc/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, url: str, username: Optional[str] = None, password: Optional[
*args, **kwargs
Parameters passed to the httpx.Client (headers, timeout, etc.)
"""
super().__init__()
super().__init__(*args, **kwargs)
self.url = url
self.version = '1.12.1'
self.return_raw_response = return_raw_response
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pydicom = "^2.3.0"

[tool.poetry.dev-dependencies]
pytest = "^7.1.0"
simple-openapi-client = "^0.5.1"
simple-openapi-client = "^0.5.2"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit beaba0e

Please sign in to comment.