diff --git a/webapp_utils.py b/webapp_utils.py index 0ae799400..ce6fc0fe2 100644 --- a/webapp_utils.py +++ b/webapp_utils.py @@ -885,9 +885,8 @@ def htmlKeyboardNavigation(links: {}) -> str: """ htmlStr = '
' for title, url in links.items(): - title = str(title) htmlStr += ' | ' + '' + \ + str(title) + ' | ' htmlStr += '
' return htmlStr