(self, path: str, language: str ="python")
| 219 | language = "python" |
| 220 | |
| 221 | def __init__(self, path: str, language: str ="python"): |
| 222 | super().__init__() |
| 223 | self.path = path |
| 224 | |
| 225 | def _run(self, path_to_file: str, keyword: Optional[str] = None): |
| 226 | """ |