Get a table format property
(self, key: str, default: Optional[str] = None)
| 76 | pass |
| 77 | |
| 78 | def get_property(self, key: str, default: Optional[str] = None) -> Optional[str]: |
| 79 | """Get a table format property""" |
| 80 | return self.properties.get(key, default) |
| 81 | |
| 82 | def set_property(self, key: str, value: str) -> None: |
| 83 | """Set a table format property""" |