From 5081b2933349bc483fc349c0b47c2923f403fafc Mon Sep 17 00:00:00 2001 From: TanguyPcFixe Date: Wed, 29 Jul 2026 10:07:28 +0200 Subject: [PATCH] fixed wrong function call in change sheet, again --- cogs/IdaCogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/IdaCogs.py b/cogs/IdaCogs.py index 97907ff..28f27a8 100644 --- a/cogs/IdaCogs.py +++ b/cogs/IdaCogs.py @@ -210,7 +210,7 @@ class IdaCogs(commands.Cog): print("deleted command.last file content") # gets the name and URL from the sheet, then store it in a file so we don't ask the sheet again. - name, url = (await helpers.getFromSheet(self.session, self.gsheetToken, "sheet"),).split("|") + name, url = (await helpers.getFromSheet(self.session, self.gsheetToken, "sheet")).split("|") with open("station.name", 'w') as f: f.write(name)