Removed unnecessary branch in __mod__() from proxy class in lazy().

Unnecessary since c716fe8782 and
7b2f2e74ad.
This commit is contained in:
Ran Benita 2019-05-03 13:00:37 +03:00 committed by Mariusz Felisiak
parent f5817c24f4
commit c7ba2e3cbb
1 changed files with 0 additions and 2 deletions

View File

@ -165,8 +165,6 @@ def lazy(func, *resultclasses):
return hash(self.__cast())
def __mod__(self, rhs):
if self._delegate_text:
return str(self) % rhs
return self.__cast() % rhs
def __add__(self, other):