Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
xi committed Mar 6, 2023
1 parent 4c01bdb commit 5f5f460
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

from django.core.management import execute_from_command_line

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tests.settings")
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tests.settings')
execute_from_command_line(sys.argv)
7 changes: 3 additions & 4 deletions tests/tests.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
from django.core import mail

import pyotp
from django.test import TestCase
from django.contrib.auth.hashers import make_password
from django.contrib.auth.models import User
from django.core import mail
from django.test import TestCase

from mfa.mail import send_mail
from mfa.methods import fido2
from mfa.models import MFAKey
from mfa.templatetags.mfa import get_qrcode
from mfa.mail import send_mail


class MFATestCase(TestCase):
Expand Down

0 comments on commit 5f5f460

Please sign in to comment.