(self, **kwargs)
| 21 | """ |
| 22 | |
| 23 | def check(self, **kwargs): |
| 24 | raise NotImplementedError( |
| 25 | "subclasses may provide a check() method to verify the finder is " |
| 26 | "configured correctly." |
| 27 | ) |
| 28 | |
| 29 | def list(self, ignore_patterns): |
| 30 | """ |
no outgoing calls