Skip to content

Commit 2ed8665

Browse files
authored
GH-48667: [Python] Remove unused imports from python/pyarrow/__init__.py (#48640)
### What changes are included in this PR? Remove unused imports from `python/pyarrow/__init__.py` ### Are these changes tested? Existing tests ### Are there any user-facing changes? No * GitHub Issue: #48667 Authored-by: Ruifeng Zheng <[email protected]> Signed-off-by: AlenkaF <[email protected]>
1 parent de9ff0d commit 2ed8665

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

python/pyarrow/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,10 @@
2929
For more information see the official page at https://arrow.apache.org
3030
"""
3131

32-
import gc as _gc
3332
import importlib as _importlib
3433
import os as _os
3534
import platform as _platform
3635
import sys as _sys
37-
import warnings as _warnings
3836

3937
try:
4038
from ._generated_version import version as __version__
@@ -58,7 +56,6 @@ def parse_git(root, **kwargs):
5856
except ImportError:
5957
__version__ = None
6058

61-
import pyarrow.lib as _lib
6259
from pyarrow.lib import (BuildInfo, CppBuildInfo, RuntimeInfo, set_timezone_db_path,
6360
MonthDayNano, VersionInfo, build_info, cpp_build_info,
6461
cpp_version, cpp_version_info, runtime_info,

0 commit comments

Comments
 (0)