Skip to content

Commit

Permalink
fix: kwargs
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <[email protected]>
  • Loading branch information
nstarman committed Jul 4, 2024
1 parent c95a903 commit 569c3ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/galax/_galax_interop_gala/potential.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__all__ = ["gala_to_galax"]

from functools import singledispatch
from typing import Any, TypeVar
from typing import TypeVar

import gala.potential as gp
from gala.units import DimensionlessUnitSystem as GalaDimensionlessUnitSystem
Expand All @@ -26,7 +26,6 @@ def convert_potential(
to_: gpx.AbstractPotentialBase | type[gpx.io.GalaxLibrary], # noqa: ARG001
from_: gp.CPotentialBase | gp.PotentialBase,
/,
**kwargs: Any, # noqa: ARG001
) -> gpx.AbstractPotentialBase:
return gala_to_galax(from_)

Expand Down

0 comments on commit 569c3ef

Please sign in to comment.