11from tenacity import retry_if_result , wait_exponential , \
22 stop_after_attempt , retry , retry_if_exception_type
33from http import HTTPStatus
4- from typing import Any , Union
4+ from typing import Any , Union , List
55
66from .openapi .config .api .client .authenticate import \
77 sync_detailed as authenticate
@@ -115,7 +115,7 @@ def retryable_authenticate(
115115def retryable_retrieve_segments (environment_uuid : str ,
116116 client : AuthenticatedClient ,
117117 cluster : Union [Unset , str ] = UNSET ) -> \
118- Response [list [Segment ]]:
118+ Response [List [Segment ]]:
119119 return retrieve_segments (client = client ,
120120 environment_uuid = environment_uuid ,
121121 cluster = cluster ,
@@ -129,7 +129,7 @@ def retryable_retrieve_segments(environment_uuid: str,
129129def retryable_retrieve_feature_config (environment_uuid : str ,
130130 client : AuthenticatedClient ,
131131 cluster : Union [Unset , str ] = UNSET ) -> \
132- Response [list [FeatureConfig ]]:
132+ Response [List [FeatureConfig ]]:
133133 return retrieve_flags (client = client ,
134134 environment_uuid = environment_uuid ,
135135 cluster = cluster )
0 commit comments