Skip to content

Commit 165b4eb

Browse files
authored
tests: remove debug print that sneaked in
1 parent 1f74752 commit 165b4eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/mypy_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def _run_mypy(program: str) -> Iterable[str]:
3434
if m:
3535
errors_by_line[int(m.group(1))].append(m.group(2))
3636
elif line:
37-
print('x', repr(line)) # allow "printf debugging" of the plugin
37+
print(line) # allow "printf debugging"
3838

3939
# Reconstruct the "actual" program with "error" comments
4040
error_comment_pattern = re.compile(r'(\s+# E: .*)?$')

0 commit comments

Comments
 (0)