mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-01 14:52:14 +01:00
15 lines
557 B
Diff
15 lines
557 B
Diff
they import warnings as _warnings then forget to use it
|
|
diff --git a/python/pyarrow/__init__.py b/python/pyarrow/__init__.py
|
|
index bcb6b30..86dc5fb 100644
|
|
--- a/python/pyarrow/__init__.py
|
|
+++ b/python/pyarrow/__init__.py
|
|
@@ -352,7 +352,7 @@ def _plasma_store_entry_point():
|
|
.. deprecated:: 10.0.0
|
|
Plasma is deprecated since Arrow 10.0.0. It will be removed in 12.0.0 or so.
|
|
"""
|
|
- warnings.warn(
|
|
+ _warnings.warn(
|
|
"Plasma is deprecated since Arrow 10.0.0. It will be removed in 12.0.0 or so.",
|
|
DeprecationWarning)
|
|
|