mirror of
https://github.com/simple-login/app.git
synced 2025-10-09 06:50:45 +08:00
linting
This commit is contained in:
parent
21e928548f
commit
ced9c879d3
1 changed files with 12 additions and 8 deletions
18
shell.py
18
shell.py
|
@ -4,14 +4,18 @@ import flask_migrate
|
||||||
from IPython import embed
|
from IPython import embed
|
||||||
from sqlalchemy_utils import create_database, database_exists, drop_database
|
from sqlalchemy_utils import create_database, database_exists, drop_database
|
||||||
|
|
||||||
from app.config import (
|
from app.config import DB_URI
|
||||||
DB_URI,
|
|
||||||
ALIAS_DOMAINS,
|
|
||||||
PREMIUM_ALIAS_DOMAINS,
|
|
||||||
)
|
|
||||||
from app.dns_utils import get_ns
|
|
||||||
from app.email_utils import send_email, render, get_email_domain_part
|
from app.email_utils import send_email, render, get_email_domain_part
|
||||||
from app.models import *
|
from app.log import LOG
|
||||||
|
from app.extensions import db
|
||||||
|
from app.models import (
|
||||||
|
User,
|
||||||
|
DeletedAlias,
|
||||||
|
SLDomain,
|
||||||
|
CustomDomain,
|
||||||
|
DomainDeletedAlias,
|
||||||
|
Mailbox,
|
||||||
|
)
|
||||||
from job_runner import (
|
from job_runner import (
|
||||||
onboarding_pgp,
|
onboarding_pgp,
|
||||||
onboarding_browser_extension,
|
onboarding_browser_extension,
|
||||||
|
|
Loading…
Add table
Reference in a new issue