| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | """ |
||
| 2 | Class Converter Specific Needs |
||
| 3 | |||
| 4 | Handling specific needs for Extractor script |
||
| 5 | """ |
||
| 6 | # package to facilitate common operations |
||
| 7 | from tableau_hyper_management.BasicNeeds import os, BasicNeeds |
||
| 8 | |||
| 9 | |||
| 10 | class BasicNeedsForConverter: |
||
| 11 | lcl_bn = None |
||
| 12 | |||
| 13 | def __init__(self): |
||
| 14 | self.lcl_bn = BasicNeeds() |
||
| 15 | |||
| 16 | def fn_check_inputs_specific(self, input_parameters): |
||
| 17 | self.lcl_bn.fn_validate_single_value(os.path.dirname(input_parameters.output_file), |
||
| 18 | 'folder', 'output file') |
||
| 19 |