Skip to content

Commit

Permalink
Catch RuntimeError along with ImportError in pyarrow_available (#3387)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease authored Mar 28, 2024
1 parent e20cdef commit 2786dd3
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 2786dd3

Please sign in to comment.