From c311957efffaa9e4610628654377a408609cabfa Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 15 Sep 2020 15:49:28 +0100 Subject: [PATCH] companion.py: `import requests` does belong down there. --- companion.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/companion.py b/companion.py index 6b742526..b01fc7a0 100644 --- a/companion.py +++ b/companion.py @@ -13,7 +13,6 @@ import logging import numbers import os import random -import requests import time import urllib.parse import webbrowser @@ -24,6 +23,8 @@ from http.cookiejar import LWPCookieJar # noqa: F401 - No longer needed but ret from os.path import join from typing import TYPE_CHECKING, Dict, List, NewType, Union +import requests + from config import appname, appversion, config from protocol import protocolhandler