Skip to content

Commit fd1e6cf

Browse files
stop mypy complaints
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 461e762 commit fd1e6cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/databricks/sql/auth/retry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import typing
55
from importlib.metadata import version
66
from enum import Enum
7-
from typing import List, Optional, Tuple, Union
7+
from typing import Any, List, Optional, Tuple, Union
88

99
import urllib3
1010

@@ -123,7 +123,7 @@ def __init__(
123123
_total: int = urllib3_kwargs.pop("total")
124124
_attempts_remaining = _total
125125

126-
_urllib_kwargs_we_care_about = dict(
126+
_urllib_kwargs_we_care_about: dict[str, Any] = dict(
127127
total=_attempts_remaining,
128128
respect_retry_after_header=True,
129129
backoff_factor=self.delay_min,

0 commit comments

Comments
 (0)