(self, root_dir, file, **kwargs)
| 84 | |
| 85 | @classmethod |
| 86 | def VALIDATE_INPUTS(self, root_dir, file, **kwargs): |
| 87 | if file == "[none]" or not file or not file.strip(): |
| 88 | return True |
| 89 | get_file(root_dir, file) |
| 90 | return True |
| 91 | |
| 92 | def load_text(self, **kwargs): |
| 93 | self.file = get_file(kwargs["root_dir"], kwargs["file"]) |
nothing calls this directly
no test coverage detected