Commit afb1f51
committed
Fix mypy: proxies type must be Mapping, not MutableMapping
requests' HTTPAdapter.send declares proxies as Mapping[str, str] | None
(via types-requests). Overriding with the more specific MutableMapping
is an invalid override under mypy 1.18 strict mode.
Signed-off-by: rahulsmahadev <rahul.mahadev@databricks.com>1 parent 6fb87ff commit afb1f51
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
425 | 425 | | |
426 | 426 | | |
427 | 427 | | |
428 | | - | |
| 428 | + | |
429 | 429 | | |
430 | 430 | | |
431 | 431 | | |
| |||
0 commit comments