Skip to content

Commit 8e6cc74

Browse files
chore(internal): remove some duplicated imports
1 parent fafa29d commit 8e6cc74

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

Diff for: src/gitpod/resources/organizations/organizations.py

+8-9
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@
66

77
import httpx
88

9-
from .invite import (
10-
InviteResource,
11-
AsyncInviteResource,
12-
InviteResourceWithRawResponse,
13-
AsyncInviteResourceWithRawResponse,
14-
InviteResourceWithStreamingResponse,
15-
AsyncInviteResourceWithStreamingResponse,
16-
)
179
from ...types import organization_leave_params, organization_set_role_params
1810
from .members import (
1911
MembersResource,
@@ -38,7 +30,14 @@
3830
async_to_raw_response_wrapper,
3931
async_to_streamed_response_wrapper,
4032
)
41-
from .invite.invite import InviteResource, AsyncInviteResource
33+
from .invite.invite import (
34+
InviteResource,
35+
AsyncInviteResource,
36+
InviteResourceWithRawResponse,
37+
AsyncInviteResourceWithRawResponse,
38+
InviteResourceWithStreamingResponse,
39+
AsyncInviteResourceWithStreamingResponse,
40+
)
4241
from ..._base_client import make_request_options
4342

4443
__all__ = ["OrganizationsResource", "AsyncOrganizationsResource"]

0 commit comments

Comments
 (0)