diff options
| author | mryouse | 2022-07-20 21:17:37 +0000 |
|---|---|---|
| committer | mryouse | 2022-07-20 21:17:37 +0000 |
| commit | a1f25756d9179ab8a60f0df4fc24575830094892 (patch) | |
| tree | 13728a9ffe296046870592fc6c45cbfefb29faa9 | |
| parent | 1e3df4f9aac2f95b1476a7507f33a3d9f0e036c5 (diff) | |
bugfix: point to the correct type for TypeWrap
| -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 8a08daf..8ac8aeb 100644 --- a/neb/__init__.py +++ b/neb/__init__.py @@ -360,7 +360,7 @@ class TypeWrap: self.name = ALL_TYPES[name] self.parent = parent self.is_func = is_func - self.type_ = TypeEnum.TYPE + self.type_ = Type(":type") def validate_type(self, target, env, ns): # if it's an any type, it's valid |
