QuackatronHQ / Gigarepo

if statements can be merged PTC-W0048
Anti-pattern
Major
a month ago2 years old
Consider merging collapsible if statements
 5        self.val = val
 6
 7    def __add__(self, other):
 8        if isinstance(self, RealNumber): 9            if isinstance(other, RealNumber):
10                return self.val + other.val
11