Skip to content

Commit

Permalink
Minor fixes in imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mbkumar committed Jan 29, 2023
1 parent 04e330c commit 1ffef6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/simsopt/geo/boozersurface.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from scipy.linalg import lu
from scipy.optimize import minimize, least_squares

from ..geo.surfaceobjectives import boozer_surface_residual
from .surfaceobjectives import boozer_surface_residual
from .._core.optimizable import Optimizable

__all__ = ['BoozerSurface']
Expand Down
4 changes: 2 additions & 2 deletions src/simsopt/geo/surfaceobjectives.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import simsoptpp as sopp
from .._core.optimizable import Optimizable
from .._core.derivative import Derivative, derivative_dec
from ..geo.surface import Surface
from ..geo.surfacexyztensorfourier import SurfaceXYZTensorFourier
from .surface import Surface
from .surfacexyztensorfourier import SurfaceXYZTensorFourier
from ..objectives.utilities import forward_backward

__all__ = ['Area', 'Volume', 'ToroidalFlux', 'PrincipalCurvature',
Expand Down

0 comments on commit 1ffef6e

Please sign in to comment.