CI Python Linter

from django.urls import path from . import views urlpatterns = [ path('', views.product_search, name='products'), path('<int:product_id>/', views.product_detail, name='product_detail'), path('add/', views.add_product, name='add_product'), path('edit/<int:product_id>/', views.edit_product, name='edit_product'), path( 'delete/<int:product_id>/', views.delete_product, name='delete_product' ) ]

Settings:


Results:

All clear, no errors found