Skip to content
Snippets Groups Projects
Commit 582f142e authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Show hints in PDF (first version)

parent f2923005
No related branches found
No related tags found
No related merge requests found
...@@ -158,10 +158,10 @@ def format_classes(classes): ...@@ -158,10 +158,10 @@ def format_classes(classes):
else: else:
classes_as_dict[step].append(part) classes_as_dict[step].append(part)
out = "" out = []
for key, value in classes_as_dict.items(): for key, value in classes_as_dict.items():
out += key + "".join(value) out.append(key + "".join(value))
return out return ", ".join(out)
######## ########
......
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