Fix linting issue with url line length

This commit is contained in:
Isaac Bythewood 2017-11-18 04:29:46 -05:00
parent bf62a4e252
commit c7d09823bb
1 changed files with 4 additions and 1 deletions

View File

@ -29,4 +29,7 @@ urlpatterns = [
]
if settings.DEBUG:
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += static(
settings.MEDIA_URL,
document_root=settings.MEDIA_ROOT
)