(self, pattern, description=None)
| 7 | class Pattern: |
| 8 | |
| 9 | def __init__(self, pattern, description=None): |
| 10 | self.pattern = pattern |
| 11 | self.description = description |
| 12 | |
| 13 | class Plugin(object): |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected