Skip to content

Commit 554e293

Browse files
keflavichbsipocz
authored andcommitted
fix broken py2 syntax =(
1 parent 3b2e115 commit 554e293

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

astroquery/wfau/core.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -824,11 +824,13 @@ def query_cross_id_async(self, coordinates, radius=1*u.arcsec,
824824

825825
return response
826826

827-
def query_cross_id(self, *args, get_query_payload=False, verbose=False,
828-
**kwargs):
827+
def query_cross_id(self, *args, **kwargs):
829828
"""
830829
See `query_cross_id_async`
831830
"""
831+
get_query_payload = kwargs.get('get_query_payload', False)
832+
verbose = kwargs.get('verbose', False)
833+
832834
response = self.query_cross_id_async(*args, **kwargs)
833835

834836
if get_query_payload:

0 commit comments

Comments
 (0)