(self, id, header, data, context)
| 17 | |
| 18 | class Table: |
| 19 | def __init__(self, id, header, data, context): |
| 20 | self.id: str = id |
| 21 | self.header: List[str] = header |
| 22 | self.data: List[List[str]] = data |
| 23 | self.context: str = context |
| 24 | |
| 25 | def __str__(self): # for debug |
| 26 | heading = "\t|||\t".join(self.header) |