Skip to content
Snippets Groups Projects
Commit 858210b9 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix spacing for valid yaml.

parent fbeb08f8
Branches
Tags
1 merge request!26Resolve "Add multiqc summary of data"
......@@ -130,8 +130,8 @@ def main():
, file = open(out_filename, "w"))
for k, v in results.items():
print(" <dt>{}</dt><dd>{}</dd>".format(k, v), file = open(out_filename, "a"))
print(" </dl>", file = open(out_filename, "a"))
print(" <dt>{}</dt><dd>{}</dd>".format(k, v), file = open(out_filename, "a"))
print(" </dl>", file = open(out_filename, "a"))
if __name__ == '__main__':
......
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