Skip to content

Commit 0944850

Browse files
committed
Use Exception instead of BaseException
1 parent 151f94f commit 0944850

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deepnote_toolkit/sql/sql_execution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def _handle_federated_auth_params(sql_alchemy_dict: dict[str, Any]) -> None:
314314
federated_auth_params = model_validate_compat(
315315
IntegrationFederatedAuthParams, sql_alchemy_dict["federatedAuthParams"]
316316
)
317-
except BaseException:
317+
except Exception:
318318
logger.exception("Invalid federated auth params, try updating toolkit version")
319319
return
320320

0 commit comments

Comments
 (0)