diff --git a/files/management/commands/process_translations.py b/files/management/commands/process_translations.py index d2dc95ca..0554dfce 100644 --- a/files/management/commands/process_translations.py +++ b/files/management/commands/process_translations.py @@ -52,7 +52,7 @@ def process_translation_files(self, translations_dir): f.write("replacement_strings = {\n") for key, value in replacement_strings_wip.items(): - f.write(f' "{key}": "{value}",\n') + f.write(f' "{key}": "{value}",\n') # noqa f.write("}\n") self.stdout.write(self.style.SUCCESS(f'Processed {file}'))