Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Nov 3, 2023
1 parent e7538e9 commit 68837cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poyonga/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, data, output_type="json", encoding="utf-8", content_type=None
_result = json.loads(data)
else:
_result = json.loads(data, encoding=encoding)
elif output_type == "apache-arrow" and not self._is_apache_arrow(content_type):
elif output_type == "apache-arrow":
if self._is_apache_arrow(content_type):
self._parse_apache_arrow(data)
return
Expand Down

0 comments on commit 68837cc

Please sign in to comment.