Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix typo in kwargs typehint for AvroBaseModel.fake #340

Merged
merged 2 commits into from
Jun 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: Fix typo in kwargs typehint for AvroBaseModel.fake
For arbitrary argument lists, only the value type is required, using Dict[str, Any] here was interpreted as Dict[str, Dict[str, Any]].
  • Loading branch information
ddevlin committed Jun 8, 2023
commit 5ead8f49a30d2df9334eac1fdc1bd2b5207682f0
2 changes: 1 addition & 1 deletion dataclasses_avroschema/avrodantic.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 44,7 @@ def validate_avro(self) -> bool:
return validate(self.asdict(), schema)

@classmethod
def fake(cls: Type[CT], **data: Dict[str, Any]) -> CT:
def fake(cls: Type[CT], **data: Any) -> CT:
"""
Creates a fake instance of the model.

Expand Down