Skip to content

Commit ce2eced

Browse files
committed
add annotation
1 parent eb0c670 commit ce2eced

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parsl/executors/taskvine/executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import uuid
2121
from concurrent.futures import Future
2222
from datetime import datetime
23-
from typing import List, Literal, Optional, Union
23+
from typing import Dict, List, Literal, Optional, Union
2424

2525
# Import other libraries
2626
import typeguard
@@ -183,7 +183,7 @@ def __init__(self,
183183
# path to serialized function contexts, and whether functions are serialized.
184184
# Helpful to detect inconsistencies in serverless functions.
185185
# Helpful to deduplicate the same function.
186-
self._map_func_names_to_func_details = {}
186+
self._map_func_names_to_func_details: Dict[str, Dict] = {}
187187

188188
# Helper scripts to prepare package tarballs for Parsl apps
189189
self._package_analyze_script = shutil.which("poncho_package_analyze")

0 commit comments

Comments
 (0)