| Conditions | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | """ |
||
| 18 | def __init__(self, config): |
||
| 19 | super(ExcelAction, self).__init__(config) |
||
| 20 | self._excel_file = self.config['excel_file'] |
||
| 21 | self._key_column = self.config['key_column'] |
||
| 22 | self._var_name_row = self.config['variable_name_row'] |
||
| 23 | self._lock_retries = self.config['lock_file_retries'] |
||
| 24 | self._lock_delay = self.config['lock_file_delay'] |
||
| 25 |