PEP8, line length

This commit is contained in:
Andreas Zweili 2019-07-24 22:38:19 +02:00
parent c84047362b
commit e162ec4177
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ urlpatterns = [
path('customer/<int:customer_id>/', views.ComputerList.as_view(),
name='computers'),
path('device/<int:device_id>/', views.device_details, name='device'),
path('computer/<int:computer_id>/', views.computer_details, name='computer'),
path('computer/<int:computer_id>/', views.computer_details,
name='computer'),
path('devices/', views.DeviceList.as_view(), name='devices'),
]