(self, path: str, name: str)
| 747 | conn: sqlite3.Connection |
| 748 | |
| 749 | def __init__(self, path: str, name: str): |
| 750 | super().__init__(name) |
| 751 | self.path = path |
| 752 | self.conn = _initialize_conn(path) |
| 753 | |
| 754 | def to_infra_object_proto(self) -> InfraObjectProto: |
| 755 | sqlite_table_proto = self.to_proto() |
nothing calls this directly
no test coverage detected