(self)
| 35 | success = 0 |
| 36 | |
| 37 | def __init__(self): |
| 38 | self.qr_scanner = QR_Extractor() |
| 39 | self.abs_parent_dir_path = os.path.abspath(".") |
| 40 | self.abs_result_dir_path = os.path.join(self.abs_parent_dir_path, self.result_dir_name) |
| 41 | self.abs_fail_dir_path = os.path.join(self.abs_parent_dir_path, self.fail_dir_name) |
| 42 | |
| 43 | print(self.abs_result_dir_path) |
| 44 | self.init_index() |
| 45 | |
| 46 | def read_dir(self, dir_path): |
| 47 | print("select path = " + dir_path) |
nothing calls this directly
no test coverage detected