We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d427339 commit 3969385Copy full SHA for 3969385
src/starplot/__init__.py
@@ -1,6 +1,6 @@
1
"""Star charts and maps"""
2
3
-__version__ = "0.5.2"
+__version__ = "0.5.3"
4
5
from .base import StarPlot # noqa: F401
6
from .zenith import ZenithPlot # noqa: F401
src/starplot/zenith.py
@@ -144,7 +144,7 @@ def _plot_constellation_labels(self):
144
self._maybe_remove_label(label)
145
146
def _plot_stars(self):
147
- stardata = stars.load(self.limiting_magnitude)
+ stardata = stars.load(limiting_magnitude=self.limiting_magnitude)
148
self._stardata = stardata
149
150
eph = load(self.ephemeris)
0 commit comments