aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/api/v3/__init__.py')
-rw-r--r--src/web/views/api/v3/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/views/api/v3/__init__.py b/src/web/views/api/v3/__init__.py
index 04dd28ad..76aa1f19 100644
--- a/src/web/views/api/v3/__init__.py
+++ b/src/web/views/api/v3/__init__.py
@@ -1,3 +1,3 @@
-from web.views.api.v3 import article, feed
+from web.views.api.v3 import article
-__all__ = ['article', 'feed']
+__all__ = ['article']
bgstack15