diff --git a/python/pyarrow/filesystem.py b/python/pyarrow/filesystem.py index 0831adbd3e7c..c634984a70b6 100644 --- a/python/pyarrow/filesystem.py +++ b/python/pyarrow/filesystem.py @@ -252,6 +252,7 @@ def __init__(self): def _get_instance(cls): if cls._instance is None: with warnings.catch_warnings(): + warnings.simplefilter("ignore") cls._instance = LocalFileSystem() return cls._instance