diff options
author | 2018-10-27 17:08:04 +0100 | |
---|---|---|
committer | 2018-10-27 17:08:04 +0100 | |
commit | 0e7f075253f5a491d69f70f8cda640372ebc050c (patch) | |
tree | e64bd63e72e0fe61d429b5b55011ca3f31d779c6 /api/urls.py | |
parent | Fixed linting (diff) |
trailing comma extermination
Diffstat (limited to 'api/urls.py')
-rw-r--r-- | api/urls.py | 6 |
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' |