minor cleanup

This commit is contained in:
Simon Forman 2022-09-11 09:33:50 -07:00
parent 64946dc239
commit a2cf184301
1 changed files with 4 additions and 4 deletions

View File

@ -317,6 +317,10 @@ def joy(stack, expression, dictionary):
return stack, dictionary
class UnknownSymbolError(KeyError):
pass
'''
@ -1287,10 +1291,6 @@ class NotABoolError(Exception):
pass
class UnknownSymbolError(KeyError):
pass
def isnt_int(i):
'''
Raise NotAnIntError if i isn't an integer.