Ruby-Cogs/economytrack/abc.py
2025-05-23 02:30:00 -04:00

24 lines
563 B
Python

from abc import ABC, ABCMeta, abstractmethod
from concurrent.futures import ThreadPoolExecutor
import discord
import pandas as pd
from discord.ext.commands.cog import CogMeta
from redbot.core.bot import Red
from redbot.core.config import Config
class CompositeMetaClass(CogMeta, ABCMeta):
"""Type detection"""
class MixinMeta(ABC):
"""Type hinting"""
bot: Red
config: Config
executor: ThreadPoolExecutor
@abstractmethod
async def get_plot(self, df: pd.DataFrame, y_label: str) -> discord.File:
raise NotImplementedError