Skip to content
Snippets Groups Projects
Commit 90ab92e3 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

Don't take unused parameter in qa_utils.py:Print{Info,Error}.

Reviewed-by: iustinp
parent a2656173
No related branches found
No related tags found
No related merge requests found
......@@ -213,9 +213,9 @@ def PrintWarning(text):
return _PrintWithColor(text, _WARNING_SEQ)
def PrintError(f, text):
def PrintError(text):
return _PrintWithColor(text, _ERROR_SEQ)
def PrintInfo(f, text):
def PrintInfo(text):
return _PrintWithColor(text, _INFO_SEQ)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment