From b9a24cbab39d94a5f4b00c0dc42af8380b14e38d Mon Sep 17 00:00:00 2001 From: Holly Date: Mon, 15 Apr 2024 20:36:23 +0000 Subject: [PATCH] =?UTF-8?q?Put=20back=20a=20dependancy=20I=20removed=20bec?= =?UTF-8?q?ause=20I=20thought=20it=20wasn't=20needed=20anymore=20?= =?UTF-8?q?=F0=9F=A4=A6=E2=80=8D=E2=99=80=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mtgcardlookup.py | 1 + requirements.txt | 3 +++ 2 files changed, 4 insertions(+) diff --git a/mtgcardlookup.py b/mtgcardlookup.py index a20fd86..a11270c 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 io diff --git a/requirements.txt b/requirements.txt index cf4d6be..fbdfc72 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,6 @@ +# For making asynchronous http requests +aiohttp + # For stripping HTML from status content nh3