Fix issue 18088: Missing the important statement for Datetime in Python binding generation (#18173)

* fix issue 18088

* update samples
This commit is contained in:
Zishun (Zack) WEI
2024-03-21 11:39:19 +08:00
committed by GitHub
parent 0b94817f58
commit 43ca5fcac9
5 changed files with 9 additions and 4 deletions

View File

@@ -16,7 +16,8 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
from typing import Any, Dict, List, Optional, Tuple, Union
from typing_extensions import Annotated
from pydantic import Field, StrictStr
from pydantic import Field, StrictInt, StrictStr
from typing import Dict
from typing_extensions import Annotated
from petstore_api.models.order import Order