Skip to content
Snippets Groups Projects
Commit 8e8ab10d authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch '32-fix-add_arrows' into 'master'

Resolve "Fix add_arrows"

Closes #32

See merge request !35
parents 63b166ab 69b0d534
No related branches found
No related tags found
1 merge request!35Resolve "Fix add_arrows"
Pipeline #2911 passed
......@@ -62,7 +62,7 @@ def ask_faq(request):
def add_arrows(array: list):
return "".join([item for item in array if item != ""])
return "".join([item for item in array if item != "" and item.lower() != "none"])
def issues_get_next_properties(request):
......
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