diff options
| author | mryouse | 2022-07-07 03:57:57 +0000 | 
|---|---|---|
| committer | mryouse | 2022-07-07 03:57:57 +0000 | 
| commit | e2c7c060c370b6c9137f41e69ce44481afbcf89d (patch) | |
| tree | 9f2258b4bb942d662b7df7f95d860e3d8ed8e86a /neb/structs.py | |
| parent | 4f7269c5c78170157a234ce262053742fef73953 (diff) | |
remove 'lazy' as an Arg parameter
Diffstat (limited to 'neb/structs.py')
| -rw-r--r-- | neb/structs.py | 3 | 
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_}" | 
