Skip to content

Commit d4f7c84

Browse files
committed
Corrected non-latin-locales.json casing
1 parent 43fd1c4 commit d4f7c84

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

non-latin-locales/docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
> ### _ISO 639-1 (2-letter) codes for non-Latin locales requiring advanced Unicode support._
1515
16-
It's just a [JSON file](https://cdn.jsdelivr.net/gh/adamlui/python-utils@non-latin-locales-1.0.2/non-latin-locales/src/non_latin_locales/non_latin-locales.json), so you can use it in any environment.
16+
It's just a [JSON file](https://cdn.jsdelivr.net/gh/adamlui/python-utils@non-latin-locales-1.0.2/non-latin-locales/src/non_latin_locales/non-latin-locales.json), so you can use it in any environment.
1717

1818
## Installation
1919

non-latin-locales/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ where = [
8989

9090
[tool.setuptools.package-data]
9191
non_latin_locales = [
92-
"non_latin-locales.json",
92+
"non-latin-locales.json",
9393
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import json, os, sys
22

3-
with open(os.path.join(os.path.dirname(__file__), 'non_latin-locales.json'), encoding='utf-8') as file:
3+
with open(os.path.join(os.path.dirname(__file__), 'non-latin-locales.json'), encoding='utf-8') as file:
44
non_latin_locales = json.load(file)
55

66
sys.modules[__name__] = non_latin_locales

0 commit comments

Comments
 (0)