Skip to content

Commit

Permalink
remove f string
Browse files Browse the repository at this point in the history
  • Loading branch information
Selyss committed Nov 26, 2023
1 parent 22a7ce4 commit 90c9a8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cogs/inquiry.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ def __init__(self):
self.add_item(self.details)

async def callback(self, interaction: nextcord.Interaction) -> None:
response = f"Placeholder."
response = "Placeholder."
if self.details.value != "":
response += (
f"\nTheir pet can be recognized by this information:\n{self.details.value}"
"response"
)
await interaction.send(response)

Expand Down

0 comments on commit 90c9a8b

Please sign in to comment.