(self, dictionary)
| 357 | self.from_dict_to_fields(self.configDict) |
| 358 | |
| 359 | def from_dict_to_fields(self, dictionary): |
| 360 | for key in self.inputs.keys(): |
| 361 | if key in dictionary.keys(): |
| 362 | self.get_field(key).set_value(str(dictionary[key])) |
| 363 | |
| 364 | def from_fields_to_dict(self): |
| 365 | self.configDict[self.KEY_PRJ_NAME] = self.get_field( |