|
11 | 11 | from .annotation_reviews.client import AnnotationReviewsClient |
12 | 12 | from .annotations.client import AnnotationsClient |
13 | 13 | from .billing.client import BillingClient |
14 | | -from .blueprints.client import BlueprintsClient |
15 | 14 | from .comments.client import CommentsClient |
16 | 15 | from .users.client import UsersClient |
17 | 16 | from .actions.client import ActionsClient |
|
40 | 39 | from .annotation_reviews.client import AsyncAnnotationReviewsClient |
41 | 40 | from .annotations.client import AsyncAnnotationsClient |
42 | 41 | from .billing.client import AsyncBillingClient |
43 | | -from .blueprints.client import AsyncBlueprintsClient |
44 | 42 | from .comments.client import AsyncCommentsClient |
45 | 43 | from .users.client import AsyncUsersClient |
46 | 44 | from .actions.client import AsyncActionsClient |
@@ -132,7 +130,6 @@ def __init__( |
132 | 130 | self.annotation_reviews = AnnotationReviewsClient(client_wrapper=self._client_wrapper) |
133 | 131 | self.annotations = AnnotationsClient(client_wrapper=self._client_wrapper) |
134 | 132 | self.billing = BillingClient(client_wrapper=self._client_wrapper) |
135 | | - self.blueprints = BlueprintsClient(client_wrapper=self._client_wrapper) |
136 | 133 | self.comments = CommentsClient(client_wrapper=self._client_wrapper) |
137 | 134 | self.users = UsersClient(client_wrapper=self._client_wrapper) |
138 | 135 | self.actions = ActionsClient(client_wrapper=self._client_wrapper) |
@@ -224,7 +221,6 @@ def __init__( |
224 | 221 | self.annotation_reviews = AsyncAnnotationReviewsClient(client_wrapper=self._client_wrapper) |
225 | 222 | self.annotations = AsyncAnnotationsClient(client_wrapper=self._client_wrapper) |
226 | 223 | self.billing = AsyncBillingClient(client_wrapper=self._client_wrapper) |
227 | | - self.blueprints = AsyncBlueprintsClient(client_wrapper=self._client_wrapper) |
228 | 224 | self.comments = AsyncCommentsClient(client_wrapper=self._client_wrapper) |
229 | 225 | self.users = AsyncUsersClient(client_wrapper=self._client_wrapper) |
230 | 226 | self.actions = AsyncActionsClient(client_wrapper=self._client_wrapper) |
|
0 commit comments