Commit e4331549 authored by Javi Ng's avatar Javi Ng

fixed code according to convention

parent 698cd540
Pipeline #2609 canceled with stages
...@@ -2,5 +2,5 @@ from django.urls import path ...@@ -2,5 +2,5 @@ from django.urls import path
from . import views from . import views
urlpatterns = [ urlpatterns = [
path('', views.about, name="about"), path('', views.about, name = "about"),
] ]
\ No newline at end of file
...@@ -2,5 +2,5 @@ from django.urls import path ...@@ -2,5 +2,5 @@ from django.urls import path
from . import views from . import views
urlpatterns = [ urlpatterns = [
path('', views.contact, name="contact"), path('', views.contact, name = "contact"),
] ]
\ No newline at end of file
...@@ -2,5 +2,5 @@ from django.urls import path ...@@ -2,5 +2,5 @@ from django.urls import path
from . import views from . import views
urlpatterns = [ urlpatterns = [
path('', views.index, name="index"), path('', views.index, name = "index"),
] ]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment