Skip to content

Commit 24303e3

Browse files
nkphysicsbsipocz
authored andcommitted
Refactor: Made exoplanet_orbit_database kwargs keyword only
1 parent c1c3f37 commit 24303e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

astroquery/exoplanet_orbit_database/exoplanet_orbit_database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def param_units(self):
3737

3838
return self._param_units
3939

40-
def get_table(self, cache=True, show_progress=True, table_path=None):
40+
def get_table(self, *, cache=True, show_progress=True, table_path=None):
4141
"""
4242
Download (and optionally cache) the `Exoplanet Orbit Database planets
4343
table <http://www.exoplanets.org>`_.
@@ -91,7 +91,7 @@ def get_table(self, cache=True, show_progress=True, table_path=None):
9191

9292
return self._table
9393

94-
def query_planet(self, planet_name, table_path=None):
94+
def query_planet(self, planet_name, *, table_path=None):
9595
"""
9696
Get table of exoplanet properties.
9797

0 commit comments

Comments
 (0)