Skip to content

Commit b71c707

Browse files
authored
Correct execution of super (#99)
1 parent 2046785 commit b71c707

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kcsd/sKCSD.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ def __init__(self, ele_pos, pots, morphology, **kwargs):
611611
See basis_functions.py for available
612612
"""
613613
self.morphology = morphology
614-
super(KCSD1D, self).__init__(ele_pos, pots, **kwargs)
614+
super(sKCSD, self).__init__(ele_pos, pots, **kwargs)
615615

616616
def parameters(self, **kwargs):
617617
self.src_type = kwargs.pop('src_type', 'gauss')

0 commit comments

Comments
 (0)