Skip to content

Commit 20deb20

Browse files
Fix linting
1 parent b8f8f36 commit 20deb20

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/conformance/runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
if test_dir_path not in sys.path:
2929
sys.path.append(test_dir_path)
3030

31-
from gen.buf.validate.conformance.cases import (
31+
from gen.buf.validate.conformance.cases import ( # noqa: E402
3232
bool_pb2, # noqa: F401
3333
bytes_pb2, # noqa: F401
3434
enums_pb2, # noqa: F401
@@ -59,8 +59,8 @@
5959
wkt_timestamp_pb2, # noqa: F401
6060
wkt_wrappers_pb2, # noqa: F401
6161
)
62-
from gen.buf.validate.conformance.cases.custom_rules import custom_rules_pb2 # noqa: F401
63-
from gen.buf.validate.conformance.harness import harness_pb2
62+
from gen.buf.validate.conformance.cases.custom_rules import custom_rules_pb2 # noqa: F401, E402
63+
from gen.buf.validate.conformance.harness import harness_pb2 # noqa: E402
6464

6565

6666
def run_test_case(tc: typing.Any, result: typing.Optional[harness_pb2.TestResult] = None) -> harness_pb2.TestResult:

0 commit comments

Comments
 (0)