Skip to content

Commit

Permalink
Endpoint_id is required
Browse files Browse the repository at this point in the history
Adding doc link
  • Loading branch information
yadudoc committed Nov 14, 2024
1 parent 203e9bd commit 50360da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions parsl/executors/globus_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class GlobusComputeExecutor(ParslExecutor, RepresentationMixin):

def __init__(
self,
endpoint_id: Optional[UUID_LIKE_T] = None,
endpoint_id: UUID_LIKE_T,
task_group_id: Optional[UUID_LIKE_T] = None,
resource_specification: Optional[Dict[str, Any]] = None,
user_endpoint_config: Optional[Dict[str, Any]] = None,
Expand Down Expand Up @@ -86,7 +86,8 @@ def __init__(
kwargs:
Other kwargs listed will be passed through to globus_compute_sdk.Executor
as is
as is. Refer to `globus-compute docs
<https://globus-compute.readthedocs.io/en/latest/reference/executor.html#globus-compute-executor>`_
"""
super().__init__()
self.endpoint_id = endpoint_id
Expand Down

0 comments on commit 50360da

Please sign in to comment.