Skip to content
Snippets Groups Projects
Commit ea0cbe75 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

const name should be upper case

parent 3a735f01
No related branches found
No related tags found
1 merge request!336Pylint checks
from django.conf import settings
db_name = 'default'
db_backend = settings.DATABASES[db_name]['ENGINE'].split('.')[-1]
DB_NAME = 'default'
DB_BACKEND = settings.DATABASES[DB_NAME]['ENGINE'].split('.')[-1]
def is_sqlite_db():
return db_backend == 'sqlite3'
return DB_BACKEND == 'sqlite3'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment