Skip to content

Commit 8f2709a

Browse files
committed
MPT-14452 Cleanup accounts service
1 parent b9fa255 commit 8f2709a

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

mpt_api_client/resources/notifications/accounts.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,6 @@ class AccountsServiceConfig:
2424
class AccountsService(Service[Contact], AccountsServiceConfig):
2525
"""Accounts service."""
2626

27-
@override
28-
def get(self, resource_id: str, select: list[str] | str | None = None) -> Contact:
29-
# TODO: delete. This method does not exist in the api
30-
raise MethodNotAllowedError("Operation not allowed")
31-
3227

3328
class AsyncAccountsService(AsyncService[Contact], AccountsServiceConfig):
3429
"""Async Accounts service."""
35-
36-
@override
37-
async def get(self, resource_id: str, select: list[str] | str | None = None) -> Contact:
38-
# TODO: delete. This method does not exist in the api
39-
raise MethodNotAllowedError("Operation not allowed")

0 commit comments

Comments
 (0)