We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4ed99f commit 3b5fdf0Copy full SHA for 3b5fdf0
1 file changed
sbpy/dynamics/syndynes.py
@@ -7,6 +7,8 @@
7
8
"""
9
10
+from __future__ import annotations
11
+
12
__all__ = [
13
"SourceOrbit",
14
"SynGenerator",
@@ -38,7 +40,7 @@
38
40
39
41
from ..data import Ephem
42
from ..utils.decorators import requires
-from ..utils import unmasked
43
+from ..utils.core import _unmasked
44
from .models import DynamicalModel, SolarGravityAndRadiationPressure
45
from .state import StateBase, State
46
@@ -229,7 +231,7 @@ def plot(
229
231
else:
230
232
# convert coordinates to plot units with the WCS object (avoid
233
# passing a masked object, or wcs will complain)
- x, y = wcs.world_to_pixel(unmasked(self.coords))
234
+ x, y = wcs.world_to_pixel(_unmasked(self.coords))
235
236
ax.plot(x, y, **kwargs)
237
0 commit comments