aboutsummaryrefslogtreecommitdiff
path: root/neb/structs.py
diff options
context:
space:
mode:
Diffstat (limited to 'neb/structs.py')
-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: