When attempting to use .env with externalbrowser authentication for credentials in semantic-model-generator-main/app_utils/shared_utils.py, an error occurs due to a missing import statement for connect from snowflake.connector.
To Reproduce:
- Configure .env with externalbrowser connection details.
- Observe the ImportError related to connect in the terminal.
Proposed Fix -> Update Line 15 in shared_utils.py:
from snowflake.connector import ProgrammingError, connect
When attempting to use .env with externalbrowser authentication for credentials in semantic-model-generator-main/app_utils/shared_utils.py, an error occurs due to a missing import statement for connect from snowflake.connector.
To Reproduce:
Proposed Fix -> Update Line 15 in shared_utils.py:
from snowflake.connector import ProgrammingError, connect