From f714dc2adbc2f2451b9d91dbbd94f9b2e9f6053d Mon Sep 17 00:00:00 2001 From: snipe <72265661+notsniped@users.noreply.github.com> Date: Thu, 21 Mar 2024 15:03:17 +0530 Subject: [PATCH] Add another missing library --- cogs/osu.py | 1 + cogs/reddit.py | 1 + cogs/weather.py | 1 + 3 files changed, 3 insertions(+) diff --git a/cogs/osu.py b/cogs/osu.py index 6ed8cef8..35cb9239 100644 --- a/cogs/osu.py +++ b/cogs/osu.py @@ -3,6 +3,7 @@ # Imports import discord import os +from api import auth from ossapi import * from discord import option, ApplicationContext from discord.ext import commands diff --git a/cogs/reddit.py b/cogs/reddit.py index 6f366f3f..891c236e 100644 --- a/cogs/reddit.py +++ b/cogs/reddit.py @@ -4,6 +4,7 @@ import discord import praw import os +from api import auth from discord import ApplicationContext, option from discord.ext import commands from random import randint diff --git a/cogs/weather.py b/cogs/weather.py index bd4dae7d..3ea92f93 100644 --- a/cogs/weather.py +++ b/cogs/weather.py @@ -3,6 +3,7 @@ import json import requests import os +from api import auth from framework.isobot.db import weather from discord import ApplicationContext, option from discord.ext import commands