From dad5ec8d11d4606be119365e164ed35094f6fe0a Mon Sep 17 00:00:00 2001 From: pluja Date: Mon, 20 Sep 2021 20:38:46 +0200 Subject: [PATCH] Delete unused footer --- kycnot.py | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/kycnot.py b/kycnot.py index 4dce32e..71fbff6 100755 --- a/kycnot.py +++ b/kycnot.py @@ -8,12 +8,13 @@ from sanic.response import text from sanic.response import html from sanic import Sanic -import ruamel.yaml from bs4 import BeautifulSoup from random import randrange +import ruamel.yaml import datetime import os.path import httpx +import qrcode import os import re @@ -31,24 +32,6 @@ app.static('/static', static_dir) yaml = ruamel.yaml.YAML() -FOOTER = f"""""" - -""" -# is-primary = Teal -> Verified tag -# is-success = Green -> Positive -# is-warning = Yellow -> Warning -# is-danger = Red -> Negative / Danger -# is-black = Black -> Other info -# is-light = Dark Grey -> None -# is-info = Info Blue -> Buy/Exchange -# is-dark = Light grey -> XMR / BTC non accepted -""" - # filename = "" @app.route("/", name="index") @app.route("/index", name="index")