Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxscout committed Sep 12, 2024
1 parent dc900de commit a9644a9
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 55 deletions.
35 changes: 17 additions & 18 deletions mimesis/datasets/int/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,23 @@
]

ISBN_GROUPS = {
"ar-ae" : "9948",
"ar-bh" : "99901",
"ar-dz" : "9961",
"ar-eg" : "977",
"ar-iq" : "9922",
"ar-jo" : "9957",
"ar-kw" : "9921",
"ar-lb" : "9953",
"ar-ly" : "9959",
"ar-ma" : "9954",
"ar-om" : "99969",
"ar-qa" : "9927",
"ar-ps" : "9950",
"ar-sa" : "9960",
"ar-sy" : "9927",
"ar-tn" : "9938",
"ar-ye" : "0000", # Yemen is not a member of ISBN

"ar-ae": "9948",
"ar-bh": "99901",
"ar-dz": "9961",
"ar-eg": "977",
"ar-iq": "9922",
"ar-jo": "9957",
"ar-kw": "9921",
"ar-lb": "9953",
"ar-ly": "9959",
"ar-ma": "9954",
"ar-om": "99969",
"ar-qa": "9927",
"ar-ps": "9950",
"ar-sa": "9960",
"ar-sy": "9927",
"ar-tn": "9938",
"ar-ye": "0000", # Yemen is not a member of ISBN
"cs": "80",
"da": "87",
"de": "3",
Expand Down
35 changes: 17 additions & 18 deletions mimesis/datasets/int/finance.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,24 +206,23 @@


CURRENCY_SYMBOLS = {
"ar-ae" : "د.إ.",
"ar-bh" : "د.ب.",
"ar-dz" : "د.ج.",
"ar-eg" : "ج.م.",
"ar-iq" : "د.ع.",
"ar-jo" : "د.ا.",
"ar-kw" : "د.ك.",
"ar-lb" : "ل.ل.",
"ar-ly" : "د.ل.",
"ar-ma" : "د.م.",
"ar-om" : "ر.ع.",
"ar-qa" : "ر.ق.",
"ar-ps" : "ش.",
"ar-sa" : "ر.س.",
"ar-sy" : "ل.س.",
"ar-tn" : "د.ت.",
"ar-ye" : "ر.ي.",

"ar-ae": "د.إ.",
"ar-bh": "د.ب.",
"ar-dz": "د.ج.",
"ar-eg": "ج.م.",
"ar-iq": "د.ع.",
"ar-jo": "د.ا.",
"ar-kw": "د.ك.",
"ar-lb": "ل.ل.",
"ar-ly": "د.ل.",
"ar-ma": "د.م.",
"ar-om": "ر.ع.",
"ar-qa": "ر.ق.",
"ar-ps": "ش.",
"ar-sa": "ر.س.",
"ar-sy": "ل.س.",
"ar-tn": "د.ت.",
"ar-ye": "ر.ي.",
"cs": "Kč",
"da": "kr",
"de": "€",
Expand Down
34 changes: 17 additions & 17 deletions mimesis/datasets/int/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -1426,23 +1426,23 @@
]

VRC_BY_LOCALES = {
"ar-ae" : "UAE",
"ar-bh" : "BRN",
"ar-dz" : "DZ",
"ar-eg" : "EG",
"ar-iq" : "IRQ",
"ar-jo" : "HKJ",
"ar-kw" : "KWT",
"ar-lb" : "RL",
"ar-ly" : "LAR",
"ar-ma" : "MA",
"ar-om" : "OM",
"ar-qa" : "Q",
"ar-ps" : "P",
"ar-sa" : "KSA",
"ar-sy" : "SYR",
"ar-tn" : "TN",
"ar-ye" : "YAR",
"ar-ae": "UAE",
"ar-bh": "BRN",
"ar-dz": "DZ",
"ar-eg": "EG",
"ar-iq": "IRQ",
"ar-jo": "HKJ",
"ar-kw": "KWT",
"ar-lb": "RL",
"ar-ly": "LAR",
"ar-ma": "MA",
"ar-om": "OM",
"ar-qa": "Q",
"ar-ps": "P",
"ar-sa": "KSA",
"ar-sy": "SYR",
"ar-tn": "TN",
"ar-ye": "YAR",
"cs": "CZ",
"da": "DK",
"de": "D",
Expand Down
1 change: 1 addition & 0 deletions mimesis/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class Locale(Enum):
An argument for all local-depend providers.
"""

AR_AE = "ar-ae"
AR_DZ = "ar-dz"
AR_EG = "ar-eg"
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ exclude = [
python = "^3.10"
factory-boy = { version = "^3.3.0", optional = true }
pytest = { version = "^7.2", optional = true }
isort = "^5.13.2"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2"
Expand Down

0 comments on commit a9644a9

Please sign in to comment.