correct the line length

This commit is contained in:
Andreas Zweili 2019-11-30 16:47:49 +01:00
parent 2de2e5ada1
commit 8f8ff2328e
1 changed files with 2 additions and 1 deletions

View File

@ -20,5 +20,6 @@ urlpatterns = [
path('device/<int:pk>/', views.device_detail_view, name='device'),
path('net/<int:pk>/', views.net_detail_view, name='net'),
path('backup/<int:pk>/', views.backup_detail_view, name='backup'),
path('computers/all/', views.ComputersFilterView.as_view(), name='all_computers')
path('computers/all/', views.ComputersFilterView.as_view(),
name='all_computers')
]