Skip to content

Commit f000958

Browse files
committed
Adding back verbose kwarg
1 parent 6ab0362 commit f000958

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

astroquery/irsa/core.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class IrsaClass(BaseQuery):
130130
def query_region_async(self, coordinates=None, *, catalog=None,
131131
spatial='Cone', radius=10 * u.arcsec, width=None,
132132
polygon=None, get_query_payload=False,
133-
selcols=None, cache=True):
133+
selcols=None, verbose=False, cache=True):
134134
"""
135135
This function serves the same purpose as
136136
:meth:`~astroquery.irsa.IrsaClass.query_region`, but returns the raw
@@ -170,6 +170,9 @@ def query_region_async(self, coordinates=None, *, catalog=None,
170170
Defaults to `False`.
171171
selcols : str, optional
172172
Target column list with value separated by a comma(,)
173+
verbose : bool, optional.
174+
If `True` then displays warnings when the returned VOTable does not
175+
conform to the standard. Defaults to `False`.
173176
cache : bool, optional
174177
Use local cache when set to `True`.
175178

0 commit comments

Comments
 (0)