aboutsummaryrefslogtreecommitdiff
path: root/tokens.py
diff options
context:
space:
mode:
authormryouse2022-05-12 02:24:13 +0000
committermryouse2022-05-12 02:24:13 +0000
commitbf03d7a6a1c70c1da988b9cb4bb44e77ab3934ce (patch)
treeb8e54442cf44e90b2f66cb6ec76f6b9f7759911e /tokens.py
parentd5d5e9c48a1583960ddb2db550e947926f9f869e (diff)
bugfix: pass through Any
Diffstat (limited to 'tokens.py')
-rw-r--r--tokens.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tokens.py b/tokens.py
index 66fb98d..450ef99 100644
--- a/tokens.py
+++ b/tokens.py
@@ -28,8 +28,7 @@ class NebBaseType:
return f":{self.type_name}"
class NebAny(NebBaseType):
- def __init__(self, type_name, type_):
- super().__init__("any", NebType.ANY)
+ pass
class NebLiteral(NebAny):