fix(issues): fixed fetch_lables outputting a tuple
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
Seaswimmer 2023-08-20 16:21:22 -04:00
parent 9b07892087
commit b08a9e337c
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -306,7 +306,7 @@ class IssueResponseModal(discord.ui.Modal, title="Sending response message..."):
label_list.append(label["id"])
if label_list is None:
print("Error! Labels are not properly configured on the target repository.")
return await label_list, response.status
return await label_list
issue_labels = fetch_labels()