Skip to content

Commit

Permalink
Fix arguments to super
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Dec 7, 2023
1 parent cbc0b38 commit 8e94c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fipy/terms/implicitSourceTerm.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, coeff=1., var=None):
Variable :math:`\phi` that
:class:`~fipy.terms.sourcTerm.SourceTerm` is implicit in.
"""
super(self, ImplicitSourceTerm).__init__(coeff=coeff, var=var)
super(ImplicitSourceTerm, self).__init__(coeff=coeff, var=var)

def _getWeight(self, var, transientGeomCoeff=None, diffusionGeomCoeff=None):
"""
Expand Down

0 comments on commit 8e94c4f

Please sign in to comment.