From 1384471745dd5e7f60838470afbef95fa5de2d24 Mon Sep 17 00:00:00 2001 From: Markos Gogoulos Date: Wed, 20 Nov 2024 13:29:37 +0200 Subject: [PATCH] fix: flake8 --- files/management/commands/process_translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}'))