(self, path: str)
| 84 | ) |
| 85 | |
| 86 | def add_path(self, path: str) -> None: |
| 87 | |
| 88 | if path not in self.whitelist: |
| 89 | self.whitelist.append(path) |
| 90 | if "*" in path: |
| 91 | self._compile_patterns() |
| 92 | |
| 93 | whiteUtils = WhitelistChecker() |
nothing calls this directly
no test coverage detected