Skip to content

Commit

Permalink
fix imports for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
minimike86 committed Dec 3, 2024
1 parent d157222 commit aadded3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions twitchrce/psclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
from typing import TYPE_CHECKING, List

import twitchio
from cogs.rce import RCECog as RCE_Cog
from cogs.vip import VIPCog as VIP_Cog
from colorama import Fore, Style
from twitchio import Chatter, Client, PartialChatter, User
from twitchio.ext import pubsub
from twitchio.ext.commands import Cog

from twitchrce.cogs.rce import RCECog as RCE_Cog
from twitchrce.cogs.vip import VIPCog as VIP_Cog

if TYPE_CHECKING:
from twitchrce.custom_bot import CustomBot

Expand Down

0 comments on commit aadded3

Please sign in to comment.