diff --git a/parsl/executors/globus_compute.py b/parsl/executors/globus_compute.py index 55d0b81287..a6fd8221d0 100644 --- a/parsl/executors/globus_compute.py +++ b/parsl/executors/globus_compute.py @@ -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, @@ -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 + `_ """ super().__init__() self.endpoint_id = endpoint_id