(self, file: str)
| 541 | self.ignore_prefix = prefix |
| 542 | |
| 543 | def simplify_path(self, file: str) -> str: |
| 544 | if self.options.show_absolute_path: |
| 545 | return os.path.abspath(file) |
| 546 | else: |
| 547 | file = os.path.normpath(file) |
| 548 | return remove_path_prefix(file, self.ignore_prefix) |
| 549 | |
| 550 | def set_file( |
| 551 | self, file: str, module: str | None, options: Options, scope: Scope | None = None |
no test coverage detected