Skip to content
Snippets Groups Projects
Commit 69b0d534 authored by Julian's avatar Julian
Browse files

Use item if item is not None

parent 63b166ab
No related branches found
No related tags found
1 merge request!35Resolve "Fix add_arrows"
Pipeline #2901 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