Skip to content

Commit

Permalink
Reruns with current black.
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebgorman committed Apr 8, 2024
1 parent 3f1180f commit 0b2dd24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/scrape/lib/languages_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ def main():
# Uses property_value_aliases to get
# ISO-15924 code.
if script not in lang["script"]:
lang["script"][_get_alias(script)] = (
script.replace("_", " ")
)
lang["script"][
_get_alias(script)
] = script.replace("_", " ")
_remove_mismatch_ids(lang)
with open(LANGUAGES_PATH, "w", encoding="utf-8") as sink:
json.dump(languages, sink, ensure_ascii=False, indent=4)
Expand Down

0 comments on commit 0b2dd24

Please sign in to comment.