(self, key: str, value: str)
| 33 | return row[0][1] |
| 34 | |
| 35 | def check_row_value(self, key: str, value: str): |
| 36 | row = self.get_row_value(key) |
| 37 | if row is None: |
| 38 | raise Exception(f"Key `{key!r}` not found in\n{self}") |
| 39 | assert row == value |
| 40 | |
| 41 | def get_column_value(self, key: str) -> Optional[List[str]]: |
| 42 | """ |