Skip to content

Commit ad72d4b

Browse files
authored
Merge pull request #41 from d-w-liu/bug_fix
Make sure data_type is properly passed through from the non-async version to the async version.
2 parents a8bc31e + 3cb9651 commit ad72d4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"retry~=0.9",
2828
"aiohttp~=3.6",
2929
"minio~=5.0",
30-
"nest_asyncio>=1.2,<1.3"
30+
"nest_asyncio>=1.3"
3131
],
3232
extras_require={
3333
'test': [

0 commit comments

Comments
 (0)