Skip to content

Commit

Permalink
Correct type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd authored Sep 25, 2024
1 parent 9818a8b commit 12bff9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scifem/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ class NewtonSolver:

def __init__(
self,
F: list[dolfinx.fem.form],
J: list[list[dolfinx.fem.form]],
F: list[dolfinx.fem.Form],
J: list[list[dolfinx.fem.Form]],
w: list[dolfinx.fem.Function],
bcs: list[dolfinx.fem.DirichletBC] | None = None,
max_iterations: int = 5,
Expand Down

0 comments on commit 12bff9a

Please sign in to comment.