diff options
author | 2021-05-16 22:11:23 +0530 | |
---|---|---|
committer | 2021-05-16 22:11:23 +0530 | |
commit | 24219ed346593273f9778fc3b835dc0ca2e88cca (patch) | |
tree | 4f839b20d7336e751a982de50ca239bec614f3b6 /bot/exts/evergreen/latex.py | |
parent | squish imports (diff) | |
parent | Merge branch 'main' into feature/stackoverflow (diff) |
Update branch
Diffstat (limited to 'bot/exts/evergreen/latex.py')
-rw-r--r-- | bot/exts/evergreen/latex.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/bot/exts/evergreen/latex.py b/bot/exts/evergreen/latex.py index c4a8597c..36c7e0ab 100644 --- a/bot/exts/evergreen/latex.py +++ b/bot/exts/evergreen/latex.py @@ -9,6 +9,8 @@ import discord import matplotlib.pyplot as plt from discord.ext import commands +from bot.bot import Bot + # configure fonts and colors for matplotlib plt.rcParams.update( { @@ -89,6 +91,11 @@ class Latex(commands.Cog): await ctx.send(file=discord.File(image, "latex.png")) -def setup(bot: commands.Bot) -> None: +def setup(bot: Bot) -> None: """Load the Latex Cog.""" - bot.add_cog(Latex(bot)) + # As we have resource issues on this cog, + # we have it currently disabled while we fix it. + import logging + logging.info("Latex cog is currently disabled. It won't be loaded.") + return + bot.add_cog(Latex()) |