aboutsummaryrefslogtreecommitdiff
path: root/newspipe/controllers/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/controllers/user.py')
-rw-r--r--newspipe/controllers/user.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/newspipe/controllers/user.py b/newspipe/controllers/user.py
index 76908a73..64dac06c 100644
--- a/newspipe/controllers/user.py
+++ b/newspipe/controllers/user.py
@@ -1,10 +1,10 @@
import logging
-from werkzeug.security import check_password_hash, generate_password_hash
-
-from newspipe.models import User
+from werkzeug.security import check_password_hash
+from werkzeug.security import generate_password_hash
from .abstract import AbstractController
+from newspipe.models import User
logger = logging.getLogger(__name__)
bgstack15