Skip to content

Commit 2718ecb

Browse files
committed
make 'private' functions kw-only
1 parent bfe635c commit 2718ecb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

astroquery/vizier/core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ def _args_to_payload(self, *args, **kwargs):
643643
# merge result
644644
return "\n".join(script)
645645

646-
def _parse_result(self, response, get_catalog_names=False, verbose=False,
646+
def _parse_result(self, response, *, get_catalog_names=False, verbose=False,
647647
invalid='warn'):
648648
"""
649649
Parses the HTTP response to create a `~astropy.table.Table`.
@@ -710,7 +710,7 @@ def valid_keywords(self):
710710
return self._valid_keyword_dict
711711

712712

713-
def parse_vizier_tsvfile(data, verbose=False):
713+
def parse_vizier_tsvfile(data, *, verbose=False):
714714
"""
715715
Parse a Vizier-generated list of tsv data tables into a list of astropy
716716
Tables.
@@ -731,7 +731,7 @@ def parse_vizier_tsvfile(data, verbose=False):
731731
return tables
732732

733733

734-
def parse_vizier_votable(data, verbose=False, invalid='warn',
734+
def parse_vizier_votable(data, *, verbose=False, invalid='warn',
735735
get_catalog_names=False):
736736
"""
737737
Given a votable as string, parse it into dict or tables

0 commit comments

Comments
 (0)