mirror of https://gitlab.com/akasroua/covot
Sort all imports
This commit is contained in:
parent
e3ab194c06
commit
34fe64049b
|
@ -6,8 +6,9 @@ mkShell {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
python38
|
python38
|
||||||
python38Packages.telethon
|
python38Packages.telethon
|
||||||
python38Packages.aiosmtpd
|
|
||||||
python38Packages.pytest
|
python38Packages.pytest
|
||||||
|
python38Packages.isort
|
||||||
|
python38Packages.pyflakes
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
from email.message import EmailMessage
|
from email.message import EmailMessage
|
||||||
from smtplib import SMTP_SSL
|
|
||||||
from constants import DOMAIN, USERNAME, PASSWORD
|
|
||||||
from secrets import token_hex
|
from secrets import token_hex
|
||||||
|
from smtplib import SMTP_SSL
|
||||||
|
|
||||||
|
from constants import DOMAIN, PASSWORD, USERNAME
|
||||||
|
|
||||||
|
|
||||||
def initialize_smtp(domain, username, password):
|
def initialize_smtp(domain, username, password):
|
||||||
|
|
Loading…
Reference in New Issue