Skip to content

Commit

Permalink
fix: πŸ› Make sure typing matches parent
Browse files Browse the repository at this point in the history
  • Loading branch information
ddanier committed Feb 8, 2024
1 parent e9a4703 commit d292fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydantic_changedetect/changedetect.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def __copy__(self: "Model") -> "Model":
object.__setattr__(clone, "model_changed_markers", self.model_changed_markers.copy())
return clone

def __deepcopy__(self: "Model", memo: Optional[Dict[str, Any]] = None) -> "Model":
def __deepcopy__(self: "Model", memo: Optional[Dict[int, Any]] = None) -> "Model":
clone = cast(
"Model",
super().__deepcopy__(memo=memo),
Expand Down

0 comments on commit d292fb7

Please sign in to comment.