Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Umberto Zerbinati committed Jun 2, 2024
1 parent c9ae9bc commit 36059fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ngsPETSc/pc.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class PETScPreconditioner(BaseMatrix):
MKL sparse: mklaij or CUDA: aijcusparse
'''
def __init__(self, mat, freeDofs, solverParameters=None, optionsPrefix=None, nullspace=None, matType="aij"):
def __init__(self, mat, freeDofs, solverParameters=None, optionsPrefix=None, nullspace=None,
matType="aij"):
BaseMatrix.__init__(self)
if hasattr(solverParameters, "ToDict"):
solverParameters = solverParameters.ToDict()
Expand Down

0 comments on commit 36059fe

Please sign in to comment.