Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
97102d9
Fixes errors in server.py
spacether May 23, 2023
1a3961e
Fixes some errors in server py files
spacether May 23, 2023
43777b9
Fixes schema_config type error
spacether May 23, 2023
3a6ffd2
Fixes errors in api_configuration
spacether May 23, 2023
f860369
Adds type ignoring for enum values, schemas fixed
spacether May 23, 2023
e915f79
Fixes python tests
spacether May 23, 2023
053d305
Moves ApiException back into the exceptions module
spacether May 23, 2023
a1eb6a8
Fixes timeout type and rest client response type
spacether May 23, 2023
818e99f
Adds int input back into timeout, fixes type errors in rest.py
spacether May 23, 2023
9dd464d
Fixes decimal exponent access
spacether May 23, 2023
d766e50
Parameter content storage updated to tuple so code can see length 1
spacether May 23, 2023
8ebf356
Uses content tuple in serialize methods
spacether May 23, 2023
92ea3da
Adds __HeaderParameterBase to fix type error
spacether May 23, 2023
26ac470
Updates urllib3.HTTPResponse -> urllib3_response.BaseHTTPResponse
spacether May 23, 2023
8062cff
Adds _SERIALIZE_TYPES
spacether May 23, 2023
4020c85
Fixes explode type error
spacether May 23, 2023
bf9dd77
Fixes urllib3 response type + header and parameter schema references
spacether May 24, 2023
40671f2
Fixes response type, fixes api_response header type
spacether May 24, 2023
927b1bb
Fixes 2 type errors
spacether May 24, 2023
c147adb
Adds assertion
spacether May 24, 2023
111e0c5
Adds assertion
spacether May 24, 2023
1ef9a13
Adds from_tuples method and needed types
spacether May 24, 2023
1c41376
Fixes return type of __serialize_application_octet_stream
spacether May 24, 2023
9be7cd7
Fixes __serialize_json
spacether May 24, 2023
9f80a1b
Fixes __serialize_text_plain
spacether May 24, 2023
facc6c7
Fixes __serialize_application_x_www_form_data
spacether May 24, 2023
21edbe7
Fixes type error
spacether May 24, 2023
faccbda
Fixes __serialize_multipart_form_data
spacether May 24, 2023
95092d4
Fixes FieldValue types
spacether May 24, 2023
cc21551
Fixes uer agent type error
spacether May 24, 2023
42816a9
Fixes another type error
spacether May 24, 2023
d40ebcf
Fixes type error
spacether May 24, 2023
88e7aa5
Fixes type errors in security_schemes
spacether May 24, 2023
49de3c4
Fixes errors in two tests
spacether May 24, 2023
8b6a89d
Fixes more type errors
spacether May 24, 2023
59d525d
Fixes error in get_server_url invocation
spacether May 24, 2023
bb2adb5
Fixes parameter and header serialization/deserialization
spacether May 24, 2023
b2d89e0
Fixes content references
spacether May 24, 2023
f977a12
Fixes parameter tests
spacether May 24, 2023
42a20ae
Fixes last python test errors
spacether May 24, 2023
cb60906
Samples regen
spacether May 24, 2023
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes error in get_server_url invocation
  • Loading branch information
spacether committed May 24, 2023
commit 59d525d91aef77ab4dba94600b95342c290ac491
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class BaseApi(api_client.Api):
{{else}}
{{#if pathItem.servers}}
host = self.api_client.configuration.get_server_url(
'paths/' + path + '/' + '/servers', server_index
'paths/' + path + '/servers', server_index
)
{{else}}
host = self.api_client.configuration.get_server_url(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class instances
_headers = self._get_headers(accept_content_types=accept_content_types)
# TODO add cookie handling
host = self.api_client.configuration.get_server_url(
'paths/' + path + '/' + '/servers', server_index
'paths/' + path + '/servers', server_index
)
security_requirement_object = self.api_client.configuration.get_security_requirement_object(
'paths/' + path + '/get/security',
Expand Down