misc: apply double-quote-string-fixer (#79788)

This commit is contained in:
Valentin Deniaud 2023-08-16 11:52:59 +02:00
parent 932b00ae1d
commit d8c76f8ce0
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ class ResourceView(DetailView):
departement_numbers = extras.get('seisin_by_email_departement_numbers', False)
if departement_numbers:
# without duplicates
departement_numbers = list(dict.fromkeys(departement_numbers.split(",")))
departement_numbers = list(dict.fromkeys(departement_numbers.split(',')))
target_entity = extras.get('seisin_by_email_target_entity', -1)
theme = extras.get('seisin_by_email_theme', '')
userType = extras.get('seisin_by_email_userType', '')

View File

@ -10,7 +10,7 @@ DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'TEST': {
'NAME': 'passerelle-minint-test-%s' % os.environ.get("BRANCH_NAME", "").replace('/', '-')[:63],
'NAME': 'passerelle-minint-test-%s' % os.environ.get('BRANCH_NAME', '').replace('/', '-')[:63],
},
}
}