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, 2 insertions, 1 deletions
diff --git a/newspipe/controllers/category.py b/newspipe/controllers/category.py
index 36f1dea2..dc140a7b 100644
--- a/newspipe/controllers/category.py
+++ b/newspipe/controllers/category.py
@@ -1,5 +1,6 @@
-from .abstract import AbstractController
from newspipe.models import Category
+
+from .abstract import AbstractController
from .feed import FeedController
bgstack15