Skip to content

Commit 50360da

Browse files
committed
Endpoint_id is required
Adding doc link
1 parent 203e9bd commit 50360da

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

parsl/executors/globus_compute.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class GlobusComputeExecutor(ParslExecutor, RepresentationMixin):
3838

3939
def __init__(
4040
self,
41-
endpoint_id: Optional[UUID_LIKE_T] = None,
41+
endpoint_id: UUID_LIKE_T,
4242
task_group_id: Optional[UUID_LIKE_T] = None,
4343
resource_specification: Optional[Dict[str, Any]] = None,
4444
user_endpoint_config: Optional[Dict[str, Any]] = None,
@@ -86,7 +86,8 @@ def __init__(
8686
8787
kwargs:
8888
Other kwargs listed will be passed through to globus_compute_sdk.Executor
89-
as is
89+
as is. Refer to `globus-compute docs
90+
<https://globus-compute.readthedocs.io/en/latest/reference/executor.html#globus-compute-executor>`_
9091
"""
9192
super().__init__()
9293
self.endpoint_id = endpoint_id

0 commit comments

Comments
 (0)