Skip to content

Commit d088500

Browse files
committed
fix super
1 parent 39540f4 commit d088500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

swagger_py_codegen/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __eq__(self, other):
4444
if isinstance(other, RefNode):
4545
return self._data == other._data and self.ref == other.ref
4646
else:
47-
super(RefNode,self).__eq__(other)
47+
return object.__eq__(other)
4848

4949

5050
class Swagger(object):

0 commit comments

Comments
 (0)