Skip to content

Commit

Permalink
fix(http): import Type
Browse files Browse the repository at this point in the history
  • Loading branch information
ombe1229 committed Jul 27, 2022
1 parent 2616de7 commit 9f1e6c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holodex/http.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from types import TracebackType
from typing import Any, Optional
from typing import Any, Optional, Type

from aiohttp import ClientSession
from typing_extensions import Literal
Expand All @@ -23,7 +23,7 @@ async def __aenter__(self) -> "HolodexHttpClient":

async def __aexit__(
self,
exc_type: Optional[type[BaseException]],
exc_type: Optional[Type[BaseException]],
exc_val: Optional[BaseException],
exc_tb: Optional[TracebackType],
) -> None:
Expand Down

1 comment on commit 9f1e6c2

@ombe1229
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

handle #37

Please sign in to comment.