aboutsummaryrefslogtreecommitdiff
path: root/neb
diff options
context:
space:
mode:
authormryouse2022-07-05 03:39:28 +0000
committermryouse2022-07-05 03:39:28 +0000
commit800d04b014e90596dcad2d3a283da4b1e274a14f (patch)
tree6bf661cedc3bb349e6d0296323e7fad8f4f22302 /neb
parent2402523aa84780447e3ce0a8109a14e1286665c8 (diff)
bugfix: need to add :handle to ALL_TYPES
Diffstat (limited to 'neb')
-rw-r--r--neb/structs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/neb/structs.py b/neb/structs.py
index 1c5248c..3b2cf4d 100644
--- a/neb/structs.py
+++ b/neb/structs.py
@@ -111,7 +111,7 @@ class Type:
else:
return self.name
-_native_types = ":any :literal :string :bool :number :int :float :[]"
+_native_types = ":any :literal :string :bool :number :int :float :[] :handle"
ALL_TYPES = {x: Type(x) for x in _native_types.split(" ")}
class Symbol: