[python-experimental] adds missing bases, performance improvements (#11517)

* Adds bases for int32, int64, float32, and float64

* Samples updated

* Removes print statements

* When creating properties and items do not call _from_openapi_data or model __new__

* Update speed improvement

* cast_to_allowed_types speeed improvements

* _get_new_instance_without_conversion order swap for speed

* Fixes test errors

* Small fixes about path_to_schemas
This commit is contained in:
Justin Black
2022-02-04 10:47:16 -05:00
committed by GitHub
parent 7843a45b89
commit 6cf4e79f14
172 changed files with 812 additions and 104 deletions

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

View File

@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
DateBase,
DateTimeBase,

Some files were not shown because too many files have changed in this diff Show More