Skip to content

Commit

Permalink
Fix spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Feb 20, 2024
1 parent 864fe5d commit cd92271
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,14 @@
python setup.py clean -> will clean all trash (*.pyc and stuff)
To get a full list of avaiable commands, read the output of:
To get a full list of available commands, read the output of:
python setup.py --help-commands
Or, if all else fails, feel free to write to the mathics users list at
[email protected] and ask for help.
"""

import atexit
import os.path as osp
import platform
import re
Expand Down Expand Up @@ -61,7 +60,7 @@ def read(*rnames):
"chardet", # Used in mathics_scanner.feed
"PyYAML", # Used in mathics-generate-json-table
# "ujson", # Optional Used in mathics_scanner.characters
"click", # Usin in CLI: mathics-generate-json-table
"click", # Using in CLI: mathics-generate-json-table
]


Expand All @@ -76,7 +75,7 @@ def read(*rnames):
EXTRAS_REQUIRE[kind] = extras_require


def subdirs(root, file="*.*", depth=10):
def subdirs(root:str, file="*.*", depth=10):
for k in range(depth):
yield root + "*/" * k + file

Expand Down

0 comments on commit cd92271

Please sign in to comment.