aboutsummaryrefslogtreecommitdiff
path: root/neb/structs.py
diff options
context:
space:
mode:
Diffstat (limited to 'neb/structs.py')
-rw-r--r--neb/structs.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/neb/structs.py b/neb/structs.py
index fcfa430..f6bd3af 100644
--- a/neb/structs.py
+++ b/neb/structs.py
@@ -126,9 +126,7 @@ class Arg:
self.lazy = lazy
def __str__(self):
- opt = "?" if self.optional else ""
- lazy = "~" if self.lazy else ""
- return f"{lazy}{opt}{self.name} {self.type_}"
+ return f"{self.name} {self.type_}"
def string_args(args, many):
out = [f"{arg}" for arg in args]