diff --git a/Pipfile b/Pipfile index cf75378..9472110 100644 --- a/Pipfile +++ b/Pipfile @@ -4,7 +4,6 @@ verify_ssl = true name = "pypi" [packages] -aiohttp = "==3.8.4" "discord.py" = "==2.2.3" rich = "==13.3.5" diff --git a/Pipfile.lock b/Pipfile.lock index 4fc901a..aa81bfe 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "a80543ef25a5a341f97159a6cba78b9800791501910f4870781909cb92ff6da1" + "sha256": "91bdb57b9acbc0e979177849dc679f2b444f853910f447fa9f64d770ff0da8f0" }, "pipfile-spec": 6, "requires": { @@ -106,7 +106,7 @@ "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10", "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f" ], - "index": "pypi", + "markers": "python_version >= '3.6'", "version": "==3.8.4" }, "aiosignal": { diff --git a/watchdog.py b/watchdog.py index c881280..473820b 100644 --- a/watchdog.py +++ b/watchdog.py @@ -1,16 +1,15 @@ import discord -import aiohttp -import asyncio import logging import logging.handlers import signal import sys -from datetime import datetime, timezone from discord.ext import commands -from os import getenv, listdir +from os import getenv from rich.console import Console from rich import inspect +from datetime import datetime, timezone + token = getenv("TOKEN") application_id = getenv("APPLICATION_ID")