diff --git a/debug.py b/debug.py index 0d96204..0ac79b0 100644 --- a/debug.py +++ b/debug.py @@ -1,6 +1,5 @@ from enum import Enum from datetime import datetime -import aiohttp DEBUG = True @@ -11,4 +10,4 @@ class Severity(Enum): def log(message, severity=Severity.MESSAGE): if DEBUG: - print(f'{datetime.now()}: [{severity.value}] {message}') \ No newline at end of file + print(f'{datetime.now()}: [{severity.value}] {message}') diff --git a/mtgcardlookup.py b/mtgcardlookup.py index e68cd82..791f3ca 100755 --- a/mtgcardlookup.py +++ b/mtgcardlookup.py @@ -3,6 +3,7 @@ import os # Used exactly once to check for the config file import shutil # Used exactly once to copy the sample config file import asyncio +import aiohttp import re import json import requests