Skip to content

Commit 8b27773

Browse files
Add to base Property class
1 parent 147fe01 commit 8b27773

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

openapi_python_client/parser/properties/property.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class Property:
2828
python_name: str = attr.ib(init=False)
2929

3030
template: ClassVar[Optional[str]] = None
31+
json_is_dict: ClassVar[bool] = False
3132

3233
def __attrs_post_init__(self) -> None:
3334
object.__setattr__(self, "python_name", utils.to_valid_python_identifier(utils.snake_case(self.name)))

0 commit comments

Comments
 (0)