Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Jun 17, 2024
1 parent 8b3e762 commit e95afd3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions WDL/runtime/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1150,9 +1150,11 @@ def scan_uri(v: Union[Value.File, Value.Directory]) -> str:
download_concurrency = cfg.get_int("scheduler", "download_concurrency")
if download_concurrency <= 0:
download_concurrency = 999999
ops: Dict[futures.Future[Tuple[bool, str]], str] = {}
ops: Dict[futures.Future[Tuple[bool, str]], str] = {} # pylint: disable=unsubscriptable-object
incomplete = len(uris)
outstanding: Set[futures.Future[Tuple[bool, str]]] = set()
outstanding: Set[futures.Future[Tuple[bool, str]]] = ( # pylint: disable=unsubscriptable-object
set()
)
downloaded_bytes = 0
cached_hits = 0
exn = None
Expand Down

0 comments on commit e95afd3

Please sign in to comment.