Skip to content

Commit 2b516fd

Browse files
nkphysicsbsipocz
authored andcommitted
Refactor: Made linelists/cdms kwargs keyword only
1 parent 080a5ee commit 2b516fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

astroquery/linelists/cdms/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def query_lines_async(self, min_frequency, max_frequency, *,
171171

172172
return response2
173173

174-
def _parse_result(self, response, verbose=False):
174+
def _parse_result(self, response, *, verbose=False):
175175
"""
176176
Parse a response into an `~astropy.table.Table`
177177
@@ -277,7 +277,7 @@ def _parse_result(self, response, verbose=False):
277277

278278
return result
279279

280-
def get_species_table(self, catfile='catdir.cat'):
280+
def get_species_table(self, *, catfile='catdir.cat'):
281281
"""
282282
A directory of the catalog is found in a file called 'catdir.cat.'
283283

0 commit comments

Comments
 (0)