mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-11 09:02:43 +00:00
[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:
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -45,6 +45,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -46,6 +46,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -47,6 +47,10 @@ from petstore_api.schemas import ( # noqa: F401
|
||||
NoneBase,
|
||||
StrBase,
|
||||
IntBase,
|
||||
Int32Base,
|
||||
Int64Base,
|
||||
Float32Base,
|
||||
Float64Base,
|
||||
NumberBase,
|
||||
DateBase,
|
||||
DateTimeBase,
|
||||
|
||||
@@ -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
Reference in New Issue
Block a user