1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

refactor ~ (docs) fix spelling + add spell-checker exceptions

This commit is contained in:
Roy Ivy III 2021-05-30 21:58:57 -05:00
parent 06c53d97fc
commit 0b20997d10
6 changed files with 20 additions and 9 deletions

View file

@ -10,6 +10,8 @@ from pathlib import Path
# third party dependencies
from tqdm import tqdm
# spell-checker:ignore (libs) tqdm imap ; (shell/mac) xcrun ; (vars) nargs
BINS_PATH=Path("../src/uu")
CACHE_PATH=Path("compiles_table.csv")
TARGETS = [
@ -50,7 +52,7 @@ TARGETS = [
class Target(str):
def __new__(cls, content):
obj = super().__new__(cls, content)
obj.arch, obj.platfrom, obj.os = Target.parse(content)
obj.arch, obj.platform, obj.os = Target.parse(content)
return obj
@staticmethod