(self, path, fileext, encoding='utf-8', post_hook=None,
**kwargs)
| 19 | _repr_attributes = ('path',) |
| 20 | |
| 21 | def __init__(self, path, fileext, encoding='utf-8', post_hook=None, |
| 22 | **kwargs): |
| 23 | super().__init__(**kwargs) |
| 24 | path = expand_path(path) |
| 25 | checkdir(path, create=False) |
| 26 | self.path = path |
| 27 | self.encoding = encoding |
| 28 | self.fileext = fileext |
| 29 | self.post_hook = post_hook |
| 30 | |
| 31 | @classmethod |
| 32 | def discover(cls, path, **kwargs): |
nothing calls this directly
no test coverage detected