Skip to content

Commit

Permalink
add alternative function to gdf_to_np_dtype and fix get_results function
Browse files Browse the repository at this point in the history
  • Loading branch information
kharoc committed Aug 8, 2019
1 parent 487796f commit 21ebcf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyblazing/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ def _run_query_get_results(distMetaToken, startTime):
result_set_list = []

for result in result_list:
if result.error_message is not '':
if result['error_message'] is not '':
result_set_list.append(ResultSetHandle(None,
None,
result['result'].resultToken,
Expand Down

0 comments on commit 21ebcf2

Please sign in to comment.