aboutsummaryrefslogtreecommitdiff
path: root/newspipe/controllers/tag.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/controllers/tag.py')
-rw-r--r--newspipe/controllers/tag.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/newspipe/controllers/tag.py b/newspipe/controllers/tag.py
index 4f6fabbe..7a392949 100644
--- a/newspipe/controllers/tag.py
+++ b/newspipe/controllers/tag.py
@@ -1,10 +1,11 @@
-import logging
import itertools
+import logging
from newspipe.bootstrap import db
-from .abstract import AbstractController
from newspipe.models.tag import BookmarkTag
+from .abstract import AbstractController
+
logger = logging.getLogger(__name__)
bgstack15