Skip to content

Commit

Permalink
Fix session optional param
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Oct 3, 2023
1 parent 08bf52d commit d7a3817
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiochris/client/normal.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async def create_user(
username: Username | str,
password: Password | str,
email: str,
session: Optional[aiohttp.ClientSession],
session: Optional[aiohttp.ClientSession] = None,
) -> UserData:
payload = {
"template": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aiochris"
version = "0.3.1"
version = "0.3.2"
description = "ChRIS client built on aiohttp"
authors = ["FNNDSC <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit d7a3817

Please sign in to comment.