diff options
Diffstat (limited to 'neb/structs.py')
| -rw-r--r-- | neb/structs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/neb/structs.py b/neb/structs.py index 3aac72a..947f3f6 100644 --- a/neb/structs.py +++ b/neb/structs.py @@ -95,8 +95,9 @@ class Symbol: def __init__(self, name, line): self.name = name self.line = line + self.type_ = TypeEnum.ANY # TODO no it's not def __str__(self): - return f"'{self.name}" + return f"{self.name}" class List: def __init__(self, args, data=False): |
