From d163993f1e9577f5d6c154625295f81a9ba8026e Mon Sep 17 00:00:00 2001 From: BadBishop007 <76763075+BadBishop007@users.noreply.github.com> Date: Tue, 29 Dec 2020 19:55:37 -0800 Subject: [PATCH] Fixed bug in code --- ep11/basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ep11/basic.py b/ep11/basic.py index 9b42e9e..45df440 100644 --- a/ep11/basic.py +++ b/ep11/basic.py @@ -1094,7 +1094,7 @@ def anded_by(self, other): def ored_by(self, other): return None, self.illegal_operation(other) - def notted(self): + def notted(self, other): return None, self.illegal_operation(other) def execute(self, args):