You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dbt_cloud/field.py, PythonLiteralOption.convert() uses a bare except: clause which catches all exceptions including KeyboardInterrupt, SystemExit, etc.
Fix: Replace with except (ValueError, SyntaxError): to only catch expected parse errors.
Bug
In dbt_cloud/field.py,
PythonLiteralOption.convert()uses a bareexcept:clause which catches all exceptions includingKeyboardInterrupt,SystemExit, etc.Fix: Replace with
except (ValueError, SyntaxError):to only catch expected parse errors.