Skip to content

Commit

Permalink
Merge pull request #3 from jrjsmrtn/missing-minor-comma
Browse files Browse the repository at this point in the history
Add a (minor) missing comma
  • Loading branch information
tusharsadhwani authored Nov 26, 2023
2 parents 38b7b34 + 4c3adbb commit 743676e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def rewrite_relative_imports(path: str, package_name: str) -> None:
def run_test(test_path: str) -> int:
test_relative_path = os.path.relpath(test_path, TMP_LIB_DIR)
with contextlib.chdir(TMP_LIB_DIR):
file_command = [sys.executable, "-m" "unittest", test_relative_path]
file_command = [sys.executable, "-m", "unittest", test_relative_path]
folder_command = [
sys.executable,
"-m",
Expand Down

0 comments on commit 743676e

Please sign in to comment.