File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
mpt_api_client/resources/notifications Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change 1- from typing import override
21
32from mpt_api_client .exceptions import MPTError
43from mpt_api_client .http import AsyncService , Service
@@ -24,16 +23,6 @@ class AccountsServiceConfig:
2423class AccountsService (Service [Contact ], AccountsServiceConfig ):
2524 """Accounts service."""
2625
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-
3226
3327class AsyncAccountsService (AsyncService [Contact ], AccountsServiceConfig ):
3428 """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" )
You can’t perform that action at this time.
0 commit comments