Skip to content

Commit 283da1d

Browse files
committed
Bugfix
function get_data now passes input data_type to get_data_async.
1 parent a8bc31e commit 283da1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

servicex/servicex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,5 +241,5 @@ def get_data(selection_query: str, datasets: Union[str, List[str]],
241241
'''
242242
nest_asyncio.apply()
243243
loop = asyncio.get_event_loop()
244-
return loop.run_until_complete(get_data_async(selection_query, datasets, servicex_endpoint,
244+
return loop.run_until_complete(get_data_async(selection_query, datasets, servicex_endpoint, data_type,
245245
image=image))

0 commit comments

Comments
 (0)