aboutsummaryrefslogtreecommitdiff
path: root/neb/structs.py
diff options
context:
space:
mode:
Diffstat (limited to 'neb/structs.py')
-rw-r--r--neb/structs.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/neb/structs.py b/neb/structs.py
index c5707a4..88c4c6f 100644
--- a/neb/structs.py
+++ b/neb/structs.py
@@ -129,11 +129,10 @@ class List:
# function things
class Arg:
- def __init__(self, name, type_, *, optional=False, lazy=False):
+ def __init__(self, name, type_, *, optional=False):
self.name = name
self.type_ = type_
self.optional = optional
- self.lazy = lazy
def __str__(self):
return f"{self.name} {self.type_}"