Skip to content

Commit

Permalink
- remove no cover pragma from methods that are now covered
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Jan 17, 2023
1 parent e18af9d commit eececde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/zope/proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def __mul__(self, other):
def __floordiv__(self, other):
return self._wrapped // other

def __truediv__(self, other): # pragma: no cover
def __truediv__(self, other):
return self._wrapped / other

def __mod__(self, other):
Expand All @@ -327,7 +327,7 @@ def __rmul__(self, other):
def __rfloordiv__(self, other):
return other // self._wrapped

def __rtruediv__(self, other): # pragma: no cover
def __rtruediv__(self, other):
return other / self._wrapped

def __rmod__(self, other):
Expand Down Expand Up @@ -386,7 +386,7 @@ def __imul__(self, other):
self._wrapped *= other
return self

def __itruediv__(self, other): # pragma: no cover
def __itruediv__(self, other):
self._wrapped /= other
return self

Expand Down

0 comments on commit eececde

Please sign in to comment.