Skip to content

Commit

Permalink
feat: ClientAdminUserManagerにaccountを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Feb 24, 2024
1 parent 1056071 commit 3ff41ca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mipac/manager/admins/user.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import annotations

from typing import TYPE_CHECKING
from mipac.actions.admins.accounts import AdminAccountActions

from mipac.actions.admins.user import ClientAdminUserActions, AdminUserActions
from mipac.http import HTTPClient
Expand All @@ -11,6 +12,7 @@

class ClientAdminUserManager:
def __init__(self, user_id: str, *, session: HTTPClient, client: ClientManager):
self.account: AdminAccountActions = AdminAccountActions(session=session, client=client)
self.__action: ClientAdminUserActions = ClientAdminUserActions(
user_id=user_id, session=session, client=client
)
Expand Down

0 comments on commit 3ff41ca

Please sign in to comment.