File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ astroid>=3,<4
10
10
sphinx-autodoc-typehints >= 1.24.0 ,< 4
11
11
sphinxcontrib-autoprogram == 0.1.9
12
12
cwltest >= 2.6.20250314152537
13
- mypy == 1.15.0
13
+ mypy == 1.16.1
14
14
types-aws-xray-sdk
15
15
types-boto < 2.49.18.20241020
16
16
types-Flask-Cors
Original file line number Diff line number Diff line change @@ -2584,7 +2584,7 @@ def __init__(
2584
2584
resources = {},
2585
2585
mutation_manager = runtime_context .mutation_manager ,
2586
2586
formatgraph = tool .formatgraph ,
2587
- make_fs_access = cast ( type [ StdFsAccess ], runtime_context .make_fs_access ) ,
2587
+ make_fs_access = runtime_context .make_fs_access ,
2588
2588
fs_access = runtime_context .make_fs_access ("" ),
2589
2589
job_script_provider = runtime_context .job_script_provider ,
2590
2590
timeout = runtime_context .eval_timeout ,
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def get_public_ip() -> str:
27
27
try :
28
28
# Try to get the internet-facing IP by attempting a connection
29
29
# to a non-existent server and reading what IP was used.
30
- ip = "127.0.0.1"
30
+ ip : str = "127.0.0.1"
31
31
with closing (socket .socket (socket .AF_INET , socket .SOCK_DGRAM )) as sock :
32
32
# 203.0.113.0/24 is reserved as TEST-NET-3 by RFC 5737, so
33
33
# there is guaranteed to be no one listening on the other
Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ def needs_google_storage(test_item: MT) -> MT:
467
467
"""
468
468
test_item = _mark_test ("google_storage" , needs_online (test_item ))
469
469
try :
470
- from google .cloud import storage # type: ignore[import-untyped]
470
+ import google .clould . storage # type: ignore[import-untyped]
471
471
except ImportError :
472
472
return unittest .skip (
473
473
"Install Toil with the 'google' extra to include this test."
You can’t perform that action at this time.
0 commit comments