aboutsummaryrefslogtreecommitdiff
path: root/newspipe/controllers/article.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/controllers/article.py')
-rw-r--r--newspipe/controllers/article.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/newspipe/controllers/article.py b/newspipe/controllers/article.py
index 5a017bfa..8468248e 100644
--- a/newspipe/controllers/article.py
+++ b/newspipe/controllers/article.py
@@ -1,14 +1,16 @@
import logging
+from collections import Counter
+
import sqlalchemy
from sqlalchemy import func
-from collections import Counter
from newspipe.bootstrap import db
-from .abstract import AbstractController
-from newspipe.lib.article_utils import process_filters
from newspipe.controllers import CategoryController, FeedController
+from newspipe.lib.article_utils import process_filters
from newspipe.models import Article
+from .abstract import AbstractController
+
logger = logging.getLogger(__name__)
bgstack15