Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit 3ccf147

Browse files
Remove empty type checking blocks (#28)
1 parent 5cc48fb commit 3ccf147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/betterproto2_compiler/plugin/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def outputfile_compiler(output_file: OutputTemplate) -> str:
4242

4343
# Sort imports, delete unused ones
4444
code = subprocess.check_output(
45-
["ruff", "check", "--select", "I,F401", "--fix", "--silent", "-"],
45+
["ruff", "check", "--select", "I,F401,TCH005", "--fix", "--silent", "-"],
4646
input=code,
4747
encoding="utf-8",
4848
)

0 commit comments

Comments
 (0)