Skip to content

Commit

Permalink
Add typechecking to GlobusComputeExecutor init.
Browse files Browse the repository at this point in the history
  • Loading branch information
yadudoc committed Nov 15, 2024
1 parent 13c3b8c commit 6cd4b54
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions parsl/executors/globus_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
from concurrent.futures import Future
from typing import Any, Callable, Dict, Optional, Union

import typeguard

from parsl.errors import OptionalModuleMissing
from parsl.executors.base import ParslExecutor
from parsl.utils import RepresentationMixin
Expand Down Expand Up @@ -36,6 +38,7 @@ class GlobusComputeExecutor(ParslExecutor, RepresentationMixin):
"""

@typeguard.typechecked
def __init__(
self,
endpoint_id: UUID_LIKE_T,
Expand Down

0 comments on commit 6cd4b54

Please sign in to comment.