(self, path: "StrPath", encoding: str)
| 52 | """We could not read a file with the given encoding""" |
| 53 | |
| 54 | def __init__(self, path: "StrPath", encoding: str): |
| 55 | self.encoding = encoding |
| 56 | super().__init__(path, f"is not valid {encoding}") |
| 57 | |
| 58 | |
| 59 | def _load_data( |