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:
Tianyi Zheng
2023-09-16 18:12:31 -04:00
committed by GitHub
parent 1488cdea70
commit fbad85d3ec
5 changed files with 9 additions and 8 deletions

View File

@ -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",