Skip to content
4 changes: 2 additions & 2 deletions src/snowflake/snowpark/_internal/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ def _pandas_importer(): # noqa: E302
pandas = importlib.import_module("pandas")
# since we enable relative imports without dots this import gives us an issues when ran from test directory
from pandas import DataFrame # NOQA
except ImportError as e:
_logger.error(f"pandas is not installed {e}")
except ImportError:
pass
return pandas


Expand Down
Loading