Skip to content

Commit 203bb5d

Browse files
committed
cov fix: rectified shorten in test cov
1 parent df1f035 commit 203bb5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ellar/common/utils/functional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def __copy__(self): # pragma: no cover
102102
# If initialized, return a copy of the wrapped object.
103103
return copy.copy(self._wrapped)
104104

105-
def __deepcopy__(self, memo):
105+
def __deepcopy__(self, memo): # pragma: no cover
106106
if self._wrapped is empty:
107107
# We have to use type(self), not self.__class__, because the
108108
# latter is proxied.

0 commit comments

Comments
 (0)