|
1 | | -from abc import abstractmethod |
2 | 1 | import os |
| 2 | +from abc import abstractmethod |
3 | 3 | from typing import Optional |
4 | | -from workos.__about__ import __version__ |
| 4 | + |
5 | 5 | from workos._client_configuration import ClientConfiguration |
6 | | -from workos.fga import FGAModule |
7 | | -from workos.utils._base_http_client import DEFAULT_REQUEST_TIMEOUT |
8 | | -from workos.utils.http_client import HTTPClient |
9 | | -from workos.api_key import ApiKeyModule |
| 6 | +from workos.api_keys import ApiKeysModule |
10 | 7 | from workos.audit_logs import AuditLogsModule |
11 | 8 | from workos.directory_sync import DirectorySyncModule |
12 | 9 | from workos.events import EventsModule |
| 10 | +from workos.fga import FGAModule |
13 | 11 | from workos.mfa import MFAModule |
14 | | -from workos.organizations import OrganizationsModule |
15 | 12 | from workos.organization_domains import OrganizationDomainsModule |
| 13 | +from workos.organizations import OrganizationsModule |
16 | 14 | from workos.passwordless import PasswordlessModule |
17 | 15 | from workos.portal import PortalModule |
18 | 16 | from workos.sso import SSOModule |
19 | 17 | from workos.user_management import UserManagementModule |
| 18 | +from workos.utils._base_http_client import DEFAULT_REQUEST_TIMEOUT |
20 | 19 | from workos.webhooks import WebhooksModule |
21 | 20 |
|
22 | 21 |
|
@@ -68,7 +67,7 @@ def __init__( |
68 | 67 |
|
69 | 68 | @property |
70 | 69 | @abstractmethod |
71 | | - def api_keys(self) -> ApiKeyModule: ... |
| 70 | + def api_keys(self) -> ApiKeysModule: ... |
72 | 71 |
|
73 | 72 | @property |
74 | 73 | @abstractmethod |
|
0 commit comments