From 094b1e3c57b9d1e36cbc4253f79fa4db98b05cd6 Mon Sep 17 00:00:00 2001 From: Interitio Date: Mon, 1 Sep 2025 19:47:34 +1000 Subject: [PATCH] Fix imported client name. --- tracker/component.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tracker/component.py b/tracker/component.py index f78d13d..c587241 100644 --- a/tracker/component.py +++ b/tracker/component.py @@ -5,7 +5,7 @@ from twitchio import PartialUser, Scopes, eventsub from twitchio.ext import commands as cmds from datamodels import BotChannel, Communities, UserProfile -from meta import CrocBot +from meta import Bot from utils.lib import utc_now from . import logger @@ -13,7 +13,7 @@ from .data import EventData, TrackingChannel class TrackerComponent(cmds.Component): - def __init__(self, bot: CrocBot): + def __init__(self, bot: Bot): self.bot = bot self.data = bot.dbconn.load_registry(EventData()) print(self.__all_listeners__)