Skip to content

Commit

Permalink
Don't special case guard
Browse files Browse the repository at this point in the history
  • Loading branch information
tekknolagi committed Jan 21, 2024
1 parent 412aacb commit 2fc3e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def xp(n: float) -> Prec:
HIGHEST_PREC: float = max(max(p.pl, p.pr) for p in PS.values())


OPER_CHARS = set("".join(PS.keys())) - set("guard")
OPER_CHARS = set(c for c in "".join(PS.keys()) if not c.isalpha())
assert " " not in OPER_CHARS


Expand Down

0 comments on commit 2fc3e66

Please sign in to comment.