aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/lib/view_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/lib/view_utils.py')
-rw-r--r--newspipe/web/lib/view_utils.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/newspipe/web/lib/view_utils.py b/newspipe/web/lib/view_utils.py
index 67ffcb28..91757bba 100644
--- a/newspipe/web/lib/view_utils.py
+++ b/newspipe/web/lib/view_utils.py
@@ -1,6 +1,8 @@
from functools import wraps
-from flask import Response, make_response, request
+from flask import make_response
+from flask import request
+from flask import Response
from newspipe.lib.utils import to_hash
bgstack15