aboutsummaryrefslogtreecommitdiff
path: root/neb/structs.py
diff options
context:
space:
mode:
authormryouse2022-07-06 01:03:14 +0000
committermryouse2022-07-06 01:03:14 +0000
commit8b2996445fb91125d8c367ddac246ea3d2d05adc (patch)
tree8eae6b28add4da8ff2172e5b5ef41c315a92ba01 /neb/structs.py
parent55b7d7a86f40fc22ae0c04771289c39de15f51ce (diff)
add a type to :handle
Diffstat (limited to 'neb/structs.py')
-rw-r--r--neb/structs.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/neb/structs.py b/neb/structs.py
index 8598344..c5707a4 100644
--- a/neb/structs.py
+++ b/neb/structs.py
@@ -94,6 +94,7 @@ class String(Literal):
class Handle:
def __init__(self, file):
self.file = file
+ self.type_ = TypeEnum.HANDLE
def __str__(self):
return f"{self.file.name} :handle"