Skip to content

Commit 9f73dfb

Browse files
committed
Don't special case guard
1 parent b8ac6b5 commit 9f73dfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: scrapscript.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def xp(n: float) -> Prec:
345345
HIGHEST_PREC: float = max(max(p.pl, p.pr) for p in PS.values())
346346

347347

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

351351

0 commit comments

Comments
 (0)