🤖 format everything with pre-commit by <github-actions[bot]> (#2685)

Auto-generated by [create-pull-request][1]

[1]: https://github.com/peter-evans/create-pull-request

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ludy <Ludy87@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2025-01-14 13:55:46 +00:00 committed by GitHub
parent bf0958f588
commit 5605e4d3bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 65 additions and 64 deletions

View File

@ -135,9 +135,10 @@ def compare_files(
# elif "language.direction" in sort_ignore_translation[language]["missing"]: # elif "language.direction" in sort_ignore_translation[language]["missing"]:
# sort_ignore_translation[language]["missing"].remove("language.direction") # sort_ignore_translation[language]["missing"].remove("language.direction")
with open(default_file_path, encoding="utf-8") as default_file, open( with (
file_path, encoding="utf-8" open(default_file_path, encoding="utf-8") as default_file,
) as file: open(file_path, encoding="utf-8") as file,
):
for _ in range(5): for _ in range(5):
next(default_file) next(default_file)
try: try: