countdown-bot

A Discord bot that runs countdown games and generates analytics
git clone https://git.ashermorgan.net/countdown-bot/
Log | Files | Refs | README

commit 5b0bef472f4e469a4b7359440ad9592c1068461b
parent 3498709546c154a7e77bb1527a19089e74297e2a
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Thu, 25 Feb 2021 08:35:56 -0800

Remove unused library

Diffstat:
Mbot.py | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/bot.py b/bot.py @@ -3,7 +3,6 @@ import copy from datetime import datetime, timedelta import discord from discord.ext import commands -from dotenv import load_dotenv import json import math from matplotlib import pyplot as plt @@ -1248,5 +1247,4 @@ async def speed(ctx, period="24.0"): # Run bot if (__name__ == "__main__"): - load_dotenv() bot.run(data["token"])