Skip to content

Commit 53843a7

Browse files
committed
Remove unexpected arguments
1 parent 311aec6 commit 53843a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pygccxml/declarations/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __eq__(self, other):
4747
return self.values == other.values
4848

4949
def __hash__(self):
50-
return super(enumeration_t, self).__hash__(self)
50+
return super(enumeration_t, self).__hash__()
5151

5252
def _get__cmp__items(self):
5353
"""implementation details"""

pygccxml/declarations/typedef.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __eq__(self, other):
4444
return self.decl_type == other.decl_type
4545

4646
def __hash__(self):
47-
return super(typedef_t, self).__hash__(self)
47+
return super(typedef_t, self).__hash__()
4848

4949
@property
5050
def type(self):

0 commit comments

Comments
 (0)