Skip to content

Commit

Permalink
Typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hexane360 committed Jan 26, 2024
1 parent 5ed914c commit 658483e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atomlib/atoms.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import polars.testing
import polars.type_aliases

from .types import to_vec3, VecLike
from .types import to_vec3, VecLike, ParamSpec
from .bbox import BBox3D
from .elem import get_elem, get_sym, get_mass
from .transform import Transform3D, IntoTransform3D, AffineTransform3D
Expand Down Expand Up @@ -144,7 +144,7 @@ def _select_schema(df: t.Union[polars.DataFrame, HasAtoms], schema: SchemaDict)


HasAtomsT = t.TypeVar('HasAtomsT', bound='HasAtoms')
P = t.ParamSpec('P')
P = ParamSpec('P')
T = t.TypeVar('T')


Expand Down

0 comments on commit 658483e

Please sign in to comment.