aboutsummaryrefslogtreecommitdiff
path: root/newspipe/controllers/category.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/controllers/category.py')
-rw-r--r--newspipe/controllers/category.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/newspipe/controllers/category.py b/newspipe/controllers/category.py
index dc140a7b..25869c6a 100644
--- a/newspipe/controllers/category.py
+++ b/newspipe/controllers/category.py
@@ -1,7 +1,6 @@
-from newspipe.models import Category
-
from .abstract import AbstractController
from .feed import FeedController
+from newspipe.models import Category
class CategoryController(AbstractController):
bgstack15