Skip to content

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
alex28sh committed Sep 22, 2024
1 parent 1d892b8 commit e9ac856
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion verified_cogen/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ class ProgramArgs:
output_style: str
filter_by_ext: Optional[str]
log_tries: Optional[str]
output_logging: bool

@no_type_check
def __init__(self, args):
self.output_logging = args.output_logging
self.input = args.input
self.dir = args.dir
self.runs = args.runs
Expand All @@ -44,6 +44,7 @@ def __init__(self, args):
self.output_style = args.output_style
self.filter_by_ext = args.filter_by_ext
self.log_tries = args.log_tries
self.output_logging = args.output_logging


def get_default_parser():
Expand Down

0 comments on commit e9ac856

Please sign in to comment.