mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-12-14 15:52:25 +03:00
Re-format all files
This commit is contained in:
@@ -2,12 +2,11 @@ from django.conf import settings
|
||||
|
||||
|
||||
def get_init_values() -> dict:
|
||||
"""Gets a test dictionary containing a key
|
||||
for every language."""
|
||||
"""Gets a test dictionary containing a key for every language."""
|
||||
|
||||
keys = {}
|
||||
|
||||
for lang_code, lang_name in settings.LANGUAGES:
|
||||
keys[lang_code] = 'value in %s' % lang_name
|
||||
keys[lang_code] = "value in %s" % lang_name
|
||||
|
||||
return keys
|
||||
|
||||
Reference in New Issue
Block a user