aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/controllers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/controllers/__init__.py')
-rw-r--r--newspipe/web/controllers/__init__.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/newspipe/web/controllers/__init__.py b/newspipe/web/controllers/__init__.py
index 5fbc2619..9b193cc5 100644
--- a/newspipe/web/controllers/__init__.py
+++ b/newspipe/web/controllers/__init__.py
@@ -7,6 +7,12 @@ from .bookmark import BookmarkController
from .tag import BookmarkTagController
-__all__ = ['FeedController', 'CategoryController', 'ArticleController',
- 'UserController', 'IconController', 'BookmarkController',
- 'BookmarkTagController']
+__all__ = [
+ "FeedController",
+ "CategoryController",
+ "ArticleController",
+ "UserController",
+ "IconController",
+ "BookmarkController",
+ "BookmarkTagController",
+]
bgstack15