Skip to content

Commit be9a964

Browse files
committed
fix a missing return_type kwd
1 parent 7a76890 commit be9a964

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

astroquery/vizier/core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import re
99

1010
from astropy.extern import six
11+
from astropy.extern.six import BytesIO
1112
import astropy.units as u
1213
import astropy.coordinates as coord
1314
import astropy.table as tbl
@@ -311,7 +312,8 @@ def query_object_async(self, object_name, catalog=None, radius=None,
311312

312313
def query_region_async(self, coordinates, radius=None, inner_radius=None,
313314
width=None, height=None, catalog=None,
314-
get_query_payload=False, cache=True):
315+
get_query_payload=False, cache=True,
316+
return_type='votable'):
315317
"""
316318
Serves the same purpose as `query_region` but only
317319
returns the HTTP response rather than the parsed result.

0 commit comments

Comments
 (0)