aboutsummaryrefslogtreecommitdiffstats
path: root/api/urls.py
diff options
context:
space:
mode:
authorGravatar Hasan-Ahmad <[email protected]>2018-10-15 21:45:21 +0100
committerGravatar Hasan-Ahmad <[email protected]>2018-10-15 21:45:21 +0100
commite0298cdbd1f1a4fdd1963c93ea271cb52fb5c923 (patch)
treebc4d2191dd3200abcd034e1bf8e4fa28e05965a1 /api/urls.py
parentFixed ordering, switched to ListModelMixin (diff)
Fixed import order and linting
Diffstat (limited to 'api/urls.py')
-rw-r--r--api/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/urls.py b/api/urls.py
index 5cc1b346..40883c64 100644
--- a/api/urls.py
+++ b/api/urls.py
@@ -4,8 +4,8 @@ from rest_framework.routers import DefaultRouter
from .views import HealthcheckView
from .viewsets import (
DocumentationLinkViewSet, MemberViewSet,
- OffTopicChannelNameViewSet, SnakeNameViewSet,
- TagViewSet, SnakeFactViewSet
+ OffTopicChannelNameViewSet, SnakeFactViewSet, SnakeNameViewSet,
+ TagViewSet
)