Skip to content

Commit

Permalink
Fixup type annotation error
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Jul 11, 2023
1 parent 531807f commit 6c4b521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qgreenland/util/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def run_qgr_command(args: list[str]) -> None:
return


def run_cmd(args: list[str]) -> None:
def run_cmd(args: list[str]) -> subprocess.CompletedProcess:
"""Run a command and log it."""
# Hack. The activation of a conda environment does not work without `shell=True`.
cmd_str = " ".join(str(arg) for arg in args)
Expand Down

0 comments on commit 6c4b521

Please sign in to comment.