How to resolve UPPER_CASE naming issues in pylint

326 views
Skip to first unread message

Dennis Alabi

unread,
Mar 30, 2019, 2:29:39 AM3/30/19
to Django users
My program throw up this error >>Constant name "movie_resource" doesn't conform to UPPER_CASE naming stylepylint(invalid-name)





"""vidly URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
from api.models import MovieResource

movie_resource = MovieResource()


urlpatterns = [
path('admin/', admin.site.urls),
path('movies/', include('movies.urls')),
path('api/', include('movie_resource.urls'))
]

Babatunde Akinyanmi

unread,
Mar 31, 2019, 12:21:47 AM3/31/19
to django...@googlegroups.com
Hi,
That's pylint telling you to change the variable name 'movie_resource' to all caps. 

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/a91173a8-058c-4b4a-a7db-183be3567e76%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Dennis Alabi

unread,
Mar 31, 2019, 8:10:07 AM3/31/19
to django...@googlegroups.com
Thanks for your reply but i change movie_resource to all caps ie MOVIE_RESOURCE and the problem did not stop. please look at my problem panel below. Actually i am trying to create an API

Babatunde Akinyanmi

unread,
Mar 31, 2019, 11:21:38 AM3/31/19
to django...@googlegroups.com
Pylint is just a linter to help you maintain your coding standards. Configure it to your taste instead of fighting it. Check pylint's documentation for guidance. 

Reply all
Reply to author
Forward
0 new messages