Skip to content

Commit e6c9a55

Browse files
committed
Refact: use super instead of calling the base class constructor
1 parent a92c6c3 commit e6c9a55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

symbols/arrayaccess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class SymbolARRAYACCESS(SymbolCALL):
3838
Arglist a SymbolARGLIST instance.
3939
"""
4040
def __init__(self, entry, arglist, lineno):
41-
SymbolCALL.__init__(self, entry, arglist, lineno)
41+
super(SymbolARRAYACCESS, self).__init__(entry, arglist, lineno)
4242

4343
@property
4444
def entry(self):

0 commit comments

Comments
 (0)