Skip to content

Commit 172d86a

Browse files
committed
chore: improves python typing hints
1 parent e90c0cd commit 172d86a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hostingde/model/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_class_instance(cls: Type[T]) -> Type[T]:
5454
def to_json(self) -> dict:
5555
return marshmallow_dataclass.class_schema(self.get_class_instance(), base_schema=CamelCaseSchema)().dump(self)
5656

57-
def __init__(self, **kwargs: dict):
57+
def __init__(self, **kwargs: Any):
5858
"""
5959
Default constructor that sets all kwargs as internal properties
6060

0 commit comments

Comments
 (0)