(self, path, config)
| 31 | """ |
| 32 | |
| 33 | def __init__(self, path, config): |
| 34 | self.path = path |
| 35 | self.config = config |
| 36 | self.stdin_encoding = get_console_encoding(sys.stdin.encoding) |
| 37 | |
| 38 | def start(self): |
| 39 | langs = self.config.getMetaData("general", "language")["type"].split(";") |
nothing calls this directly
no test coverage detected