Skip to content

Commit

Permalink
🐛 Fix test helper
Browse files Browse the repository at this point in the history
  • Loading branch information
je-cook committed Aug 13, 2024
1 parent 3792904 commit 840c2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/base/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self, param_1, param_2) -> None:
self.param_2 = param_2

@classmethod
def from_dict(cls, d):
def from_dict(cls, d, *, allow_unknown: bool = False): # noqa: ARG003
return cls(**d)


Expand Down

0 comments on commit 840c2c9

Please sign in to comment.