This repository was archived by the owner on Dec 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
modules/openapi-json-schema-generator/src/main/resources/python
features/nonCompliantUseDiscriminatorIfCompositionFails/python Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ from pprint import pprint
6
6
{{ #with apiInfo }}
7
7
{{ #each apis }}
8
8
{{ #if @first }}
9
- from {{ packageName }} .{{ apiPackage }} import {{ classFilename }}
9
+ from {{ packageName }} .{{ apiPackage }} .tags import {{ classFilename }}
10
10
{{ #each imports }}
11
11
{{{ import }}}
12
12
{{ /each }}
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ Please follow the [installation procedure](#installation--usage) and then run th
140
140
import time
141
141
import unit_test_api
142
142
from pprint import pprint
143
- from unit_test_api.apis import ref_api
143
+ from unit_test_api.apis.tags import ref_api
144
144
from unit_test_api.model.property_named_ref_that_is_not_a_reference import PropertyNamedRefThatIsNotAReference
145
145
from unit_test_api.model.ref_in_additionalproperties import RefInAdditionalproperties
146
146
from unit_test_api.model.ref_in_allof import RefInAllof
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ Please follow the [installation procedure](#installation--usage) and then run th
140
140
import time
141
141
import this_package
142
142
from pprint import pprint
143
- from this_package.apis import default_api
143
+ from this_package.apis.tags import default_api
144
144
from this_package.model.operator import Operator
145
145
# Defining the host is optional and defaults to http://localhost:3000
146
146
# See configuration.py for a list of all supported configuration parameters.
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ import datetimeimport datetimeimport datetimeimport datetimeimport datetimeimpor
140
140
import time
141
141
import petstore_api
142
142
from pprint import pprint
143
- from petstore_api.apis import another_fake_api
143
+ from petstore_api.apis.tags import another_fake_api
144
144
from petstore_api.model.client import Client
145
145
# Defining the host is optional and defaults to http://petstore.swagger.io:80/v2
146
146
# See configuration.py for a list of all supported configuration parameters.
You can’t perform that action at this time.
0 commit comments