Skip to content

Commit 41e3205

Browse files
authored
Add new params to quiet mypy, a type ignore doesn't work. (#1278)
Co-authored-by: VersusFacit <versusfacit@users.noreply.github.com>
1 parent 772c523 commit 41e3205

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dbt/adapters/snowflake/connections.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,8 @@ def add_query(
487487
auto_begin: bool = True,
488488
bindings: Optional[Any] = None,
489489
abridge_sql_log: bool = False,
490+
retryable_exceptions: tuple[type[Exception], ...] = tuple(),
491+
retry_limit: int = 0,
490492
) -> Tuple[Connection, Any]: # type: ignore
491493
if bindings:
492494
# The snowflake connector is stricter than, e.g., psycopg2 -

0 commit comments

Comments
 (0)