Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
fixes from rename
Browse files Browse the repository at this point in the history
Signed-off-by: Nathaniel Starkman (@nstarman) <nstarkman@protonmail.com>
  • Loading branch information
nstarman committed Dec 25, 2020
1 parent d772194 commit 6d591b4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion discO/core/sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def _preferred_frame_resolve(self, frame: T.Optional[FrameLikeType]):
For frame is None ``resolve_frame_like`` returns the default
frame from the config file. Instead, we want the default
frame of the footprint.
frame of the potential.
Returns
-------
Expand Down
6 changes: 3 additions & 3 deletions discO/extern/agama/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
# IMPORTS

# PROJECT-SPECIFIC
from . import sampler
from .sampler import * # noqa: F401, F403
from . import sample
from .sample import * # noqa: F401, F403

__all__ += sampler.__all__
__all__ += sample.__all__


##############################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# PROJECT-SPECIFIC
from discO.common import FrameLikeType, SkyCoordType
from discO.core.sampler import PotentialSampler
from discO.core.sample import PotentialSampler

##############################################################################
# CODE
Expand Down
6 changes: 3 additions & 3 deletions discO/extern/galpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
# IMPORTS

# PROJECT-SPECIFIC
from . import sampler
from .sampler import * # noqa: F401, F403
from . import sample
from .sample import * # noqa: F401, F403

__all__ += sampler.__all__
__all__ += sample.__all__


##############################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# PROJECT-SPECIFIC
from discO.common import FrameLikeType
from discO.core.sampler import PotentialSampler
from discO.core.sample import PotentialSampler

##############################################################################
# CODE
Expand Down

0 comments on commit 6d591b4

Please sign in to comment.