Skip to content

Commit 0a34707

Browse files
authored
Update src/pendulum/interval.py
1 parent ab5e95b commit 0a34707

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pendulum/interval.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ def __ne__(self, other: object) -> bool:
457457

458458
def __deepcopy__(self, memodict: dict[int, Self]) -> Self:
459459
return self.__class__(
460-
copy.deepcopy(self.start),
461-
copy.deepcopy(self.end),
460+
copy.deepcopy(self.start, memo),
461+
copy.deepcopy(self.end, memo),
462462
self._absolute,
463463
)

0 commit comments

Comments
 (0)