aboutsummaryrefslogtreecommitdiff
path: root/neb
diff options
context:
space:
mode:
Diffstat (limited to 'neb')
-rw-r--r--neb/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/neb/__init__.py b/neb/__init__.py
index 6aeec88..63b6d51 100644
--- a/neb/__init__.py
+++ b/neb/__init__.py
@@ -79,7 +79,7 @@ class Macro(Callable):
def __init__(self, name, params, body, args=None, many=None):
super().__init__(name, params, body, args, many)
-class NebMacro(Callable):
+class NebMacro(Macro):
def __init__(self, name, callable_, args=None, many=None, return_type=None):
super().__init__(name, None, callable_, args, many)