Skip to content

Commit b6e3931

Browse files
committed
Semantic merge
bazel.py ended up with two imports of 'path' that required more careful merging.
1 parent dd77148 commit b6e3931

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

smart_tests/test_runners/bazel.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
from junitparser import TestCase, TestSuite # type: ignore
99

10+
import smart_tests.args4p.converters as converters
1011
import smart_tests.args4p.typer as typer
1112

1213
from ..commands.subset import Subset
@@ -44,7 +45,7 @@ def record_tests(
4445
"--build-event-json",
4546
help="set file path generated by --build_event_json_file",
4647
multiple=True,
47-
type=path(exists=True)
48+
type=converters.path(exists=True)
4849
)] = None,
4950
):
5051
"""

0 commit comments

Comments
 (0)