Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 3, 2023
1 parent 92a3710 commit 8457e7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neuro_admin_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class GetUserResponse:


class AdminClientABC(abc.ABC):
async def __aenter__(self) -> "AdminClientABC":
async def __aenter__(self) -> AdminClientABC:
return self

async def __aexit__(self, *args: Any) -> None:
Expand Down Expand Up @@ -2476,7 +2476,7 @@ def __init__(
self._trace_configs = trace_configs
self._client: aiohttp.ClientSession | None = None

async def __aenter__(self) -> "AdminClient":
async def __aenter__(self) -> AdminClient:
self._init()
return self

Expand Down Expand Up @@ -2583,7 +2583,7 @@ class AdminClientDummy(AdminClientABC):
user_info=UserInfo(email="email@examle.com"),
)

async def __aenter__(self) -> "AdminClientDummy":
async def __aenter__(self) -> AdminClientDummy:
return self

async def __aexit__(self, *args: Any) -> None:
Expand Down

0 comments on commit 8457e7f

Please sign in to comment.