Searched refs:argument_list (Results 1 – 2 of 2) sorted by relevance
124 def _populate_args(self, argument_list): argument126 for arg in vars(argument_list):127 if (arg == "input") & (argument_list.input is not None):128 self.input = argument_list.input130 elif (arg == "output") & (argument_list.output is not None):131 self.output = argument_list.output133 elif (arg == "chip") & (argument_list.chip is not None):134 self.chip_name = argument_list.chip137 elif (arg == "verbose") & argument_list.verbose:140 elif (arg == "super_verbose") & argument_list.super_verbose:[all …]
78 def _populate_args(self, argument_list): argument80 for arg in vars(argument_list):81 if (arg == "input") & (argument_list.input is not None):82 self.input = argument_list.input84 elif (arg == "output") & (argument_list.output is not None):85 self.output = argument_list.output87 elif (arg == "chip") & (argument_list.chip is not None):88 self.chip_name = argument_list.chip91 elif (arg == "verbose") & argument_list.verbose: