:param b: bytes to be parsed :param kwargs: arguments passed on to open the csv file :return: b parsed as a single Table
(self, b, **kwargs)
| 434 | |
| 435 | @abc.abstractmethod |
| 436 | def read_bytes(self, b, **kwargs): |
| 437 | """ |
| 438 | :param b: bytes to be parsed |
| 439 | :param kwargs: arguments passed on to open the csv file |
| 440 | :return: b parsed as a single Table |
| 441 | """ |
| 442 | raise NotImplementedError |
| 443 | |
| 444 | @property |
| 445 | @abc.abstractmethod |
no outgoing calls
no test coverage detected