(self, item)
| 379 | return temp |
| 380 | |
| 381 | def edit_value(self, item): |
| 382 | keys, value = self.walk_recursively_to_root(item) |
| 383 | if "crop" not in keys: # 'crop' should not be cast, otherwise it is understood as a list |
| 384 | value = self.cast_to_right_type(value) |
| 385 | self.set_value(self.cfg, keys, value) |
| 386 | |
| 387 | def set_value(self, cfg, keys, value, ind=None): |
| 388 | temp = self.get_nested_key(cfg, keys) |
nothing calls this directly
no test coverage detected