minor cleanup

This commit is contained in:
Simon Forman
2022-09-11 09:33:50 -07:00
parent 64946dc239
commit a2cf184301
+4 -4
View File
@@ -317,6 +317,10 @@ def joy(stack, expression, dictionary):
return stack, dictionary return stack, dictionary
class UnknownSymbolError(KeyError):
pass
''' '''
███████╗████████╗ █████╗ ██████╗██╗ ██╗ ███████╗████████╗ █████╗ ██████╗██╗ ██╗
██╔════╝╚══██╔══╝██╔══██╗██╔════╝██║ ██╔╝ ██╔════╝╚══██╔══╝██╔══██╗██╔════╝██║ ██╔╝
@@ -1287,10 +1291,6 @@ class NotABoolError(Exception):
pass pass
class UnknownSymbolError(KeyError):
pass
def isnt_int(i): def isnt_int(i):
''' '''
Raise NotAnIntError if i isn't an integer. Raise NotAnIntError if i isn't an integer.