aboutsummaryrefslogtreecommitdiffstats
path: root/api/urls.py
diff options
context:
space:
mode:
authorGravatar Hasan-Ahmad <[email protected]>2018-10-27 17:08:04 +0100
committerGravatar Hasan-Ahmad <[email protected]>2018-10-27 17:08:04 +0100
commit0e7f075253f5a491d69f70f8cda640372ebc050c (patch)
treee64bd63e72e0fe61d429b5b55011ca3f31d779c6 /api/urls.py
parentFixed linting (diff)
trailing comma extermination
Diffstat (limited to 'api/urls.py')
-rw-r--r--api/urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/api/urls.py b/api/urls.py
index 63802858..8229b08c 100644
--- a/api/urls.py
+++ b/api/urls.py
@@ -28,7 +28,7 @@ bot_router.register(
)
bot_router.register(
'snake-facts',
- SnakeFactViewSet,
+ SnakeFactViewSet
)
bot_router.register(
'snake-idioms',
@@ -41,11 +41,11 @@ bot_router.register(
)
bot_router.register(
'special-snakes',
- SpecialSnakeViewSet,
+ SpecialSnakeViewSet
)
bot_router.register(
'tags',
- TagViewSet,
+ TagViewSet
)
app_name = 'api'