koleo-cli 0.2.137.14__tar.gz → 0.2.137.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of koleo-cli might be problematic. Click here for more details.
- {koleo_cli-0.2.137.14/koleo_cli.egg-info → koleo_cli-0.2.137.15}/PKG-INFO +1 -1
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo/utils.py +2 -2
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15/koleo_cli.egg-info}/PKG-INFO +1 -1
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/setup.py +1 -1
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/LICENSE +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/README.md +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo/__init__.py +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo/__main__.py +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo/api.py +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo/cli.py +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo/storage.py +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo/types.py +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo_cli.egg-info/SOURCES.txt +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo_cli.egg-info/dependency_links.txt +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo_cli.egg-info/entry_points.txt +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo_cli.egg-info/requires.txt +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/koleo_cli.egg-info/top_level.txt +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/pyproject.toml +0 -0
- {koleo_cli-0.2.137.14 → koleo_cli-0.2.137.15}/setup.cfg +0 -0
|
@@ -69,8 +69,8 @@ NUMERAL_TO_ARABIC = {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
|
|
72
|
-
def convert_platform_number(number: str) -> int | None | str:
|
|
73
|
-
if number[-1] in "abcdefghi": # just to be safe...
|
|
72
|
+
def convert_platform_number(number: str | None) -> int | None | str:
|
|
73
|
+
if number and number[-1] in "abcdefghi": # just to be safe...
|
|
74
74
|
arabic = NUMERAL_TO_ARABIC.get(number[:-1])
|
|
75
75
|
return f"{arabic}{number[-1]}" if arabic else None
|
|
76
76
|
return NUMERAL_TO_ARABIC.get(number)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|