From 4fe102ab84de830837b118f34a24a19b9c3de11b Mon Sep 17 00:00:00 2001 From: TanguyPcFixe Date: Tue, 15 Jul 2025 09:52:07 +0200 Subject: [PATCH] fixed issue with sheet URL, added todolist --- README.md | 4 ++++ main.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4095eb7..1712827 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # yetAnotherIdaBot +TODO : + +readback url for change url command +fix shit diff --git a/main.py b/main.py index eb1dfaa..39999e7 100644 --- a/main.py +++ b/main.py @@ -7,7 +7,7 @@ import json ### reads token files def readToken(filePath): with open(filePath, 'r') as f: - return f.readline()[:-1] + return f.readline() bot = commands.Bot() @@ -104,4 +104,4 @@ async def changeSheetUrl(ctx, #run the damn thing -bot.run(discordToken) \ No newline at end of file +bot.run(discordToken)