File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ management:
44 docChecksum: ba638b2ad28966c596e28321a2003686
55 docVersion: 0.3.0
66 speakeasyVersion: internal
7- generationVersion: 2.230.1
7+ generationVersion: 2.233.2
88 releaseVersion: 3.3.2
99 configChecksum: edd271faa6a1bb696695699287e1224e
1010 repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
Original file line number Diff line number Diff line change @@ -1136,4 +1136,14 @@ Based on:
11361136### Generated
11371137- [ python v3.3.2] .
11381138### Releases
1139+ - [ PyPI v3.3.2] https://pypi.org/project/speakeasy-client-sdk-python/3.3.2 - .
1140+
1141+ ## 2024-01-16 00:11:13
1142+ ### Changes
1143+ Based on:
1144+ - OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
1145+ - Speakeasy CLI 1.141.1 (2.233.2) https://github.com/speakeasy-api/speakeasy
1146+ ### Generated
1147+ - [ python v3.3.2] .
1148+ ### Releases
11391149- [ PyPI v3.3.2] https://pypi.org/project/speakeasy-client-sdk-python/3.3.2 - .
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ class SDKConfiguration:
2424 language : str = 'python'
2525 openapi_doc_version : str = '0.3.0'
2626 sdk_version : str = '3.3.2'
27- gen_version : str = '2.230.1 '
28- user_agent : str = 'speakeasy-sdk/python 3.3.2 2.230.1 0.3.0 speakeasy-client-sdk-python'
27+ gen_version : str = '2.233.2 '
28+ user_agent : str = 'speakeasy-sdk/python 3.3.2 2.233.2 0.3.0 speakeasy-client-sdk-python'
2929 retry_config : RetryConfig = None
3030
3131 def get_server_details (self ) -> Tuple [str , Dict [str , str ]]:
Original file line number Diff line number Diff line change @@ -75,12 +75,12 @@ def do_request():
7575 if res .status_code == parsed_code :
7676 raise TemporaryError (res )
7777 except requests .exceptions .ConnectionError as exception :
78- if not retries .config .config .retry_connection_errors :
78+ if retries .config .config .retry_connection_errors :
7979 raise
8080
8181 raise PermanentError (exception ) from exception
8282 except requests .exceptions .Timeout as exception :
83- if not retries .config .config .retry_connection_errors :
83+ if retries .config .config .retry_connection_errors :
8484 raise
8585
8686 raise PermanentError (exception ) from exception
You can’t perform that action at this time.
0 commit comments