Skip to content

Commit

Permalink
fix mypy check
Browse files Browse the repository at this point in the history
  • Loading branch information
darynaishchenko committed Jan 6, 2025
1 parent 6e0c785 commit b571112
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class KeysReplaceTransformation(RecordTransformation):
new: str
parameters: InitVar[Mapping[str, Any]]

def __post_init__(self, parameters) -> None:
def __post_init__(self, parameters: Mapping[str, Any]) -> None:
self._old = InterpolatedString.create(self.old, parameters=parameters)
self._new = InterpolatedString.create(self.new, parameters=parameters)

Expand Down

0 comments on commit b571112

Please sign in to comment.