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
16 changes: 16 additions & 0 deletions .basedpyright/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -35937,6 +35937,22 @@
"lineCount": 1
}
},
{
"code": "reportOperatorIssue",
"range": {
"startColumn": 51,
"endColumn": 71,
"lineCount": 1
}
},
{
"code": "reportUnknownArgumentType",
"range": {
"startColumn": 51,
"endColumn": 71,
"lineCount": 1
}
},
{
"code": "reportUnknownArgumentType",
"range": {
Expand Down
4 changes: 2 additions & 2 deletions experiments/maxwell.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def green3m(x,y,z,source,strength,k):

def dipole3e(x,y,z,source,strength,k):
#
# evalaute electric and magnetic field due
# evaluate electric and magnetic field due
# to monochromatic electric dipole located at "source"
# with intensity "strength"

Expand All @@ -161,7 +161,7 @@ def dipole3e(x,y,z,source,strength,k):

def dipole3m(x,y,z,source,strength,k):
#
# evalaute electric and magnetic field due
# evaluate electric and magnetic field due
# to monochromatic magnetic dipole located at "source"
# with intensity "strength"
evec = green3m(x,y,z,source,strength,k)
Expand Down
4 changes: 2 additions & 2 deletions experiments/maxwell_sphere.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def green3m(x,y,z,source,strength,k):

def dipole3e(x,y,z,source,strength,k):
#
# evalaute electric and magnetic field due
# evaluate electric and magnetic field due
# to monochromatic electric dipole located at "source"
# with intensity "strength"

Expand All @@ -159,7 +159,7 @@ def dipole3e(x,y,z,source,strength,k):

def dipole3m(x,y,z,source,strength,k):
#
# evalaute electric and magnetic field due
# evaluate electric and magnetic field due
# to monochromatic magnetic dipole located at "source"
# with intensity "strength"
evec = green3m(x,y,z,source,strength,k)
Expand Down
1 change: 0 additions & 1 deletion pytential/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
)
from meshmode.dof_array import DOFArray
from pytools import T, memoize_in
from sumpy.kernel import Kernel


if TYPE_CHECKING:
Expand Down
1 change: 0 additions & 1 deletion pytential/symbolic/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import numpy as np
from typing_extensions import override

import pymbolic.primitives as p
from arraycontext import (
ArrayContext,
ArrayOrContainer,
Expand Down
4 changes: 0 additions & 4 deletions pytential/symbolic/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@
)
from pytools import memoize_method

from pytential.collection import GeometryCollection
from pytential.linalg.utils import TargetAndSourceClusterList
from pytential.symbolic.primitives import Variable


if TYPE_CHECKING:
from collections.abc import Sequence
Expand Down
2 changes: 0 additions & 2 deletions pytential/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
from abc import ABC, abstractmethod
from typing import TYPE_CHECKING, TypeAlias

from arraycontext import Array
from meshmode.discretization import Discretization
from pytools import T


if TYPE_CHECKING:
Expand Down
Loading