Remove errant check

This commit is contained in:
Max Berkowitz 2024-04-26 00:37:37 -04:00 committed by GitHub
parent 6c4c3036e5
commit 54beed5df7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -98,7 +98,6 @@ class Scanner:
elif value == "not":
yield Token(TokenType.NOT, value, pos)
else:
MARK_GEN.verify_mark(value)
yield Token(TokenType.IDENT, value, pos)
pos += len(value)
else: