(self)
| 27 | |
| 28 | class ContainerFilesHandler(FileSystemEventHandler): |
| 29 | def __init__(self): |
| 30 | self.log_filename = None |
| 31 | self.EXCLUDES = None |
| 32 | self.module_name = None |
| 33 | |
| 34 | def on_any_event(self, event): |
| 35 | if not (event.event_type == 'modified' and event.is_directory) \ |
nothing calls this directly
no outgoing calls
no test coverage detected