: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)
| 449 | |
| 450 | @abc.abstractmethod |
| 451 | def read_bytes(self, b, **kwargs): |
| 452 | """ |
| 453 | :param b: bytes to be parsed |
| 454 | :param kwargs: arguments passed on to open the csv file |
| 455 | :return: b parsed as a single Table |
| 456 | """ |
| 457 | raise NotImplementedError |
| 458 | |
| 459 | @property |
| 460 | @abc.abstractmethod |
no outgoing calls
no test coverage detected