improved codestyle, go back to == in requirements

This commit is contained in:
dadosch
2018-08-24 21:52:27 +02:00
parent 218e43fdf8
commit 91eee0b84a
5 changed files with 61 additions and 57 deletions

View File

@@ -28,7 +28,9 @@ urlpatterns = [
# API
url(
r"^api/auth/",
include(('rest_framework.urls','rest_framework'), namespace="rest_framework")
include(
('rest_framework.urls', 'rest_framework'),
namespace="rest_framework")
),
url(r"^api/", include((router.urls, 'drf'), namespace="drf")),