mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +08:00
Delete empty junk file (#9062)
* updating DIRECTORY.md * updating DIRECTORY.md * Delete empty junk file * updating DIRECTORY.md * Fix ruff errors * Fix more ruff errors --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -54,7 +54,7 @@ class NumberingSystem(Enum):
|
||||
|
||||
|
||||
class NumberWords(Enum):
|
||||
ONES: ClassVar = {
|
||||
ONES: ClassVar[dict[int, str]] = {
|
||||
0: "",
|
||||
1: "one",
|
||||
2: "two",
|
||||
@ -67,7 +67,7 @@ class NumberWords(Enum):
|
||||
9: "nine",
|
||||
}
|
||||
|
||||
TEENS: ClassVar = {
|
||||
TEENS: ClassVar[dict[int, str]] = {
|
||||
0: "ten",
|
||||
1: "eleven",
|
||||
2: "twelve",
|
||||
@ -80,7 +80,7 @@ class NumberWords(Enum):
|
||||
9: "nineteen",
|
||||
}
|
||||
|
||||
TENS: ClassVar = {
|
||||
TENS: ClassVar[dict[int, str]] = {
|
||||
2: "twenty",
|
||||
3: "thirty",
|
||||
4: "forty",
|
||||
|
Reference in New Issue
Block a user