diff options
| author | mryouse | 2022-07-06 01:03:14 +0000 |
|---|---|---|
| committer | mryouse | 2022-07-06 01:03:14 +0000 |
| commit | 8b2996445fb91125d8c367ddac246ea3d2d05adc (patch) | |
| tree | 8eae6b28add4da8ff2172e5b5ef41c315a92ba01 | |
| parent | 55b7d7a86f40fc22ae0c04771289c39de15f51ce (diff) | |
add a type to :handle
| -rw-r--r-- | neb/structs.py | 1 |
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" |
