Skip to content

Commit

Permalink
Update pyrickroll.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SatinWukerORIG authored Sep 6, 2021
1 parent 02072f6 commit eb1a4c3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src-py/pyrickroll.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ def __make_token(self, tok):
elif tok == 'isnot': self.add_to_tokens(TT_operator, '!=')
elif tok == 'isgreaterthan': self.add_to_tokens(TT_operator, '>')
elif tok == 'islessthan': self.add_to_tokens(TT_operator, '<')
elif tok == 'isgreaterthanorequalto': self.add_to_tokens(TT_operator, '>=')
elif tok == 'islessthanorequalto': self.add_to_tokens(TT_operator, '<=')
else: self.add_to_tokens(TT_keyword, tok)

self.last_kw = tok
Expand Down

0 comments on commit eb1a4c3

Please sign in to comment.