Skip to content

Commit

Permalink
Add more typing
Browse files Browse the repository at this point in the history
Co-authored-by: Nicola Soranzo <[email protected]>
  • Loading branch information
bernt-matthias and nsoranzo authored Jan 21, 2025
1 parent b1a1f1d commit 82f335e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/tool_util/deps/mulled/mulled_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,10 +421,10 @@ def __init__(self, involucro_bin=None, shell_exec=None, verbose="3"):
self.shell_exec = shell_exec or commands.shell
self.verbose = verbose

def build_command(self, involucro_args):
def build_command(self, involucro_args: List[str]) -> List[str]:
return [self.involucro_bin, f"-v={self.verbose}"] + involucro_args

def exec_command(self, involucro_args) -> int:
def exec_command(self, involucro_args: List[str]) -> int:
cmd = self.build_command(involucro_args)
# Create ./build dir manually, otherwise Docker will do it as root
created_build_dir = False
Expand Down

0 comments on commit 82f335e

Please sign in to comment.