Commit 26270a0f authored by Adam Blank's avatar Adam Blank
Browse files

Update codequality.py

parent 72dcbc51
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -448,7 +448,7 @@ def check_style() -> str | None:
for matcher, msg in SOURCE_FUNCTIONS:
m = matcher(tokens)
if m:
print(colored("* " + msg, "red") + " in " +
print(colored(msg, "red") + " in " +
colored(filename + ":" + str(m.start[0]), "yellow"), file=log)
mypy_output = run_mypy(filename)
for rule in mypy_output:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment