Skip to content

Commit

Permalink
Remove return
Browse files Browse the repository at this point in the history
  • Loading branch information
dynobo committed Jun 22, 2021
1 parent 647dcf9 commit 5a68c2e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.py
Expand Up @@ -72,7 +72,7 @@
]


def cmd(cmd_str: str) -> str:
def cmd(cmd_str: str):
"""Wraps subprocess.run()."""
completed_proc = subprocess.run( # pylint: disable=subprocess-run-check
cmd_str, shell=True
Expand All @@ -84,7 +84,6 @@ def cmd(cmd_str: str) -> str:
output=completed_proc.stdout,
stderr=completed_proc.stderr,
)
return completed_proc.stdout.decode("utf-8")


def prepare_windows_installer():
Expand Down

0 comments on commit 5a68c2e

Please sign in to comment.