diff options
| author | mryouse | 2022-07-07 03:53:52 +0000 |
|---|---|---|
| committer | mryouse | 2022-07-07 03:53:52 +0000 |
| commit | 8e8b54a2a141955d0cbf4dd6ca6635fd5f6fb786 (patch) | |
| tree | ad97a8f657a88cb4ae57be9f340b784726421081 /neb/__init__.py | |
| parent | 3412d4d0e35dfe1faac5254199aa34f0354e992b (diff) | |
bugfix: NebMacro inherits from Macro
Diffstat (limited to 'neb/__init__.py')
| -rw-r--r-- | neb/__init__.py | 2 |
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) |
