From c211dd3b4a645bc0acc7335e7dcca9b7e80c20f6 Mon Sep 17 00:00:00 2001 From: strNophix Date: Sat, 6 Aug 2022 22:06:40 +0200 Subject: [PATCH] Changed batch size back to default --- lurker/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lurker/bot.py b/lurker/bot.py index 88a1956..5fb4db9 100644 --- a/lurker/bot.py +++ b/lurker/bot.py @@ -73,7 +73,7 @@ class RecordBatchStore(typing.Generic[T]): class Bot(discord.Client): last_insert: dict[int, datetime] = {} - track_store: RecordBatchStore[SpotifyRecord] = RecordBatchStore(submit_records, 1) + track_store: RecordBatchStore[SpotifyRecord] = RecordBatchStore(submit_records) async def on_ready(self): logger.info(f"Logged in as {self.user}")