Skip to content

Commit

Permalink
Catch RuntimeError along with ImportError in pyarrow_available
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Mar 26, 2024
1 parent c7c4149 commit 5db83f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion altair/utils/_importers.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@ def pyarrow_available() -> bool:
try:
import_pyarrow_interchange()
return True
except ImportError:
except (ImportError, RuntimeError):
return False

0 comments on commit 5db83f9

Please sign in to comment.