Removed redundant return

This commit is contained in:
Andrew Murray 2019-09-30 21:11:40 +10:00
parent bb1fc75e55
commit 290189596e

View File

@ -327,8 +327,6 @@ class IFDRational(Rational):
if denominator == 0:
self._val = float("nan")
return
elif denominator == 1:
self._val = Fraction(value)
else: