Add missing trailing commas

This commit is contained in:
Ryan P Kilby 2019-07-12 18:22:09 -07:00
parent 8e67176a48
commit d9dc916785

View File

@ -6,12 +6,12 @@ REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': [ 'DEFAULT_RENDERER_CLASSES': [
'rest_framework.renderers.JSONRenderer', 'rest_framework.renderers.JSONRenderer',
'rest_framework.renderers.TemplateHTMLRenderer', 'rest_framework.renderers.TemplateHTMLRenderer',
] ],
'DEFAULT_PARSER_CLASSES': [ 'DEFAULT_PARSER_CLASSES': [
'rest_framework.parsers.JSONParser', 'rest_framework.parsers.JSONParser',
'rest_framework.parsers.FormParser', 'rest_framework.parsers.FormParser',
'rest_framework.parsers.MultiPartParser' 'rest_framework.parsers.MultiPartParser',
] ],
} }
This module provides the `api_setting` object, that is used to access This module provides the `api_setting` object, that is used to access