Skip to content

Commit

Permalink
chore: fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Jul 9, 2024
1 parent 69c31b4 commit 3b6e8d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bottles/backend/wine/winecommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def __init__(
config: BottleConfig,
command: str,
terminal: bool = False,
arguments: str = False,
arguments: str = "",
environment: dict = {},
communicate: bool = False,
cwd: Optional[str] = None,
Expand Down Expand Up @@ -467,7 +467,7 @@ def _get_runner_info(self) -> tuple[str, str]:
if arch == "win64":
runner = f"{runner}64"

runner = shlex.quote(runner)
runner = shlex.quote(runner) # type: ignore

return runner, runner_runtime

Expand Down

0 comments on commit 3b6e8d7

Please sign in to comment.