aboutsummaryrefslogtreecommitdiff
path: root/newspipe/controllers/article.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 22:29:19 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 22:29:19 +0100
commit7a08a6b548e39a477aaf49b6213a2e06a0f3498a (patch)
tree775895d433100fbbe0efdb6759a2b14e5a999d30 /newspipe/controllers/article.py
parentremoved unused variable (diff)
downloadnewspipe-7a08a6b548e39a477aaf49b6213a2e06a0f3498a.tar.gz
newspipe-7a08a6b548e39a477aaf49b6213a2e06a0f3498a.tar.bz2
newspipe-7a08a6b548e39a477aaf49b6213a2e06a0f3498a.zip
cleaned imports
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