Skip to content

Commit c870943

Browse files
Nementonp1-ra
authored andcommitted
tpl / model / add missing typing import: Tuple,Optional,BinaryIO,TextIO
1 parent 5c14a16 commit c870943

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

end_to_end_tests/golden-record/my_test_api_client/models/a_model_with_properties_reference_that_are_not_object.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import datetime
22
from io import BytesIO
3-
from typing import Any, Dict, List, Type, TypeVar, Union, cast
3+
from typing import Any, BinaryIO, Dict, List, Optional, TextIO, Tuple, Type, TypeVar, Union, cast
44

55
import attr
66
from dateutil.parser import isoparse

openapi_python_client/templates/model.py.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Dict, Type, TypeVar
1+
from typing import Any, Dict, Type, TypeVar, Tuple, Optional, BinaryIO, TextIO
22

33
{% if model.additional_properties %}
44
from typing import List

0 commit comments

Comments
 (0)