".github/vscode:/vscode.git/clone" did not exist on "07f6ba7299be668d76f8b056871de3abd6a037ea"
Commit 44124d95 authored by lintangsutawika's avatar lintangsutawika
Browse files

add space after -

parent 491d4799
......@@ -578,7 +578,7 @@ def evaluate(
tab_string = ""
if "tab" in task_results:
tab = task_results.pop("tab")
tab_string = " " * tab + "-" if tab > 0 else ""
tab_string = " " * tab + "- " if tab > 0 else ""
if task in task_group_alias:
task_alias = task_group_alias[task]
......@@ -600,7 +600,7 @@ def evaluate(
tab_string = ""
if "tab" in group_results:
tab = group_results.pop("tab")
tab_string = " " * tab + "-" if tab > 0 else ""
tab_string = " " * tab + "- " if tab > 0 else ""
if group in task_group_alias:
group_alias = task_group_alias[group]
......
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