From b672cbf0a1395bf2b62d6a6373283df2c8290733 Mon Sep 17 00:00:00 2001 From: AlberLC Date: Thu, 1 May 2025 23:18:42 +0200 Subject: [PATCH] Fix imports --- flanabot/bots/connect_4_bot.py | 3 +-- flanabot/bots/steam_bot.py | 3 +-- flanabot/bots/ubereats_bot.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/flanabot/bots/connect_4_bot.py b/flanabot/bots/connect_4_bot.py index 4c7a4c0..8d5ccd5 100644 --- a/flanabot/bots/connect_4_bot.py +++ b/flanabot/bots/connect_4_bot.py @@ -10,8 +10,7 @@ from typing import Iterable from flanautils import Media, MediaType, Source from multibot import MultiBot -import connect_4_frontend -from flanabot import constants +from flanabot import connect_4_frontend, constants from flanabot.models import ButtonsGroup, Message, Player diff --git a/flanabot/bots/steam_bot.py b/flanabot/bots/steam_bot.py index 7bd5650..606c2e4 100644 --- a/flanabot/bots/steam_bot.py +++ b/flanabot/bots/steam_bot.py @@ -15,12 +15,11 @@ from typing import Any, AsyncIterator import aiohttp import flanautils import playwright.async_api -import playwright.async_api import plotly from flanautils import Media, MediaType, Source from multibot import LimitError, MultiBot, RegisteredCallback, constants as multibot_constants -import constants +from flanabot import constants from flanabot.models import Message, SteamRegion diff --git a/flanabot/bots/ubereats_bot.py b/flanabot/bots/ubereats_bot.py index 6ba3478..67e9348 100644 --- a/flanabot/bots/ubereats_bot.py +++ b/flanabot/bots/ubereats_bot.py @@ -10,7 +10,7 @@ import flanautils import playwright.async_api from multibot import MultiBot, group -import constants +from flanabot import constants from flanabot.models import Chat, Message