Skip to content

Commit e222796

Browse files
committed
update type annotations
1 parent 32d45c7 commit e222796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eventsourcingdb/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ def __init__(
3030
self,
3131
base_url: str,
3232
api_token: str,
33-
):
33+
) -> None:
3434
self.__http_client = HttpClient(base_url=base_url, api_token=api_token)
3535

36-
async def __aenter__(self) -> "Client":
36+
async def __aenter__(self) -> 'Client':
3737
await self.__http_client.__aenter__()
3838
return self
3939

0 commit comments

Comments
 (0)