Formatting

This commit is contained in:
t3xhno 2024-02-06 21:27:55 +01:00
parent dab4e41de0
commit adb4a25d25
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def getDmzTasks(url):
for task in tasks:
taskIndex = task.select("div")[0].text
taskTitle = task.select("div")[1].text
result += taskIndex + " " + taskTitle + "|" + " Link: " + url + task.find("a")["href"][1:] + "\n"
result += taskIndex + " " + taskTitle + " | " + "Link: " + url + task.find("a")["href"][1:] + "\n"
return result
except Exception as e:
return e