This commit is contained in:
Reid 'arrdem' McKenzie 2023-05-30 22:22:30 -06:00
parent ed5699b50d
commit 90e2c1a888

View file

@ -16,6 +16,8 @@ from time import sleep
from typing import Callable from typing import Callable
from urllib import parse as urlparse from urllib import parse as urlparse
from fastmail import FastMailSMTP
from flask import Flask as App, render_template
from octorest import OctoRest as _OR from octorest import OctoRest as _OR
from requests import Response from requests import Response
from requests.exceptions import ( from requests.exceptions import (
@ -23,10 +25,7 @@ from requests.exceptions import (
HTTPError, HTTPError,
Timeout, Timeout,
) )
from flask import Flask as App, current_app, render_template
from tentacles.store import Store from tentacles.store import Store
from fastmail import FastMailSMTP
class OctoRest(_OR): class OctoRest(_OR):