Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions grudge/discretization.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ def complex_dtype(self) -> np.dtype[Any]:

def empty(self,
array_context: ArrayContext,
dtype: DTypeLike = None,
dtype: DTypeLike | None = None,
*, dd: ToDOFDescConvertible = None
) -> DOFArray:
"""Return an empty :class:`~meshmode.dof_array.DOFArray` defined at
Expand All @@ -770,7 +770,7 @@ def empty(self,

def zeros(self,
array_context: ArrayContext,
dtype: DTypeLike = None,
dtype: DTypeLike | None = None,
*,
dd: ToDOFDescConvertible = None
) -> DOFArray:
Expand Down
4 changes: 4 additions & 0 deletions grudge/models/em.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# pyright: reportUnknownArgumentType=false
# ^ This silences basedpyright warnings that occurred in CI but
# were somehow not reproducible locally

"""grudge operators modelling electromagnetic phenomena."""
from __future__ import annotations

Expand Down
4 changes: 4 additions & 0 deletions grudge/models/euler.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# pyright: reportUnknownArgumentType=false
# ^ This silences basedpyright warnings that occurred in CI but
# were somehow not reproducible locally

"""Grudge operators modeling compressible, inviscid flows (Euler)

Model definitions
Expand Down
4 changes: 4 additions & 0 deletions grudge/models/wave.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# pyright: reportUnknownArgumentType=false
# ^ This silences basedpyright warnings that occurred in CI but
# were somehow not reproducible locally

"""Wave equation operators."""
from __future__ import annotations

Expand Down
Loading