Skip to content

Commit

Permalink
fix: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
mgogoulos committed Nov 20, 2024
1 parent 29b362c commit 1384471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/management/commands/process_translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}'))

0 comments on commit 1384471

Please sign in to comment.