Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-1852428: Remove error print in try/catch #2787

Merged
merged 9 commits into from
Jan 24, 2025
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