Skip to content

Commit

Permalink
restore type signature
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Dec 3, 2024
1 parent 640518f commit 5c566ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def sanitize_dns_subdomain_rfc1123(raw_string: str) -> str:
return sanitized


def execute_wait(cmd: str, walltime: Union[float, int, None] = None) -> Tuple[int, str, str]:
def execute_wait(cmd: str, walltime: Optional[int] = None) -> Tuple[int, str, str]:
''' Synchronously execute a commandline string on the shell.
Args:
Expand Down

0 comments on commit 5c566ca

Please sign in to comment.