diff options
Diffstat (limited to 'structs.py')
| -rw-r--r-- | structs.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ class String(Literal, T.String): def __init__(self, value): super().__init__(value, T.String) def __str__(self): - return f'"{self.value}"' + return f'"{repr(self.value)[1:-1]}"' class Type: def __init__(self, name): |
