optimize import

This commit is contained in:
Son Nguyen Kim 2021-09-10 17:37:33 +02:00
parent 61d9f7ee43
commit e5a388dffb
2 changed files with 0 additions and 5 deletions

View File

@ -1,8 +1,6 @@
from dataclasses import dataclass
from operator import or_
from flanker.addresslib import address
from flanker.addresslib.address import EmailAddress
from flask import render_template, request, redirect, flash
from flask import url_for
from flask_login import login_required, current_user
@ -20,7 +18,6 @@ from app.email_utils import (
from app.extensions import db
from app.log import LOG
from app.models import Alias, Contact, EmailLog
from app.utils import sanitize_email
def email_validator():

View File

@ -10,13 +10,11 @@ import collections
import phpserialize
import requests
from Crypto.Hash import SHA1
# Crypto can be found at https://pypi.org/project/pycryptodome/
from Crypto.PublicKey import RSA
from Crypto.Signature import PKCS1_v1_5
from app.config import PADDLE_PUBLIC_KEY_PATH, PADDLE_VENDOR_ID, PADDLE_AUTH_CODE
# Your Paddle public key.
from app.log import LOG
from app.models import User