(self, data_file="sql/sql.pkl")
| 5 | |
| 6 | class orm(nn.Module): |
| 7 | def __init__(self, data_file="sql/sql.pkl"): |
| 8 | super().__init__() |
| 9 | self.data_file = data_file |
| 10 | |
| 11 | def save(self, sql): |
| 12 | if os.path.exists(self.data_file): |
nothing calls this directly
no outgoing calls
no test coverage detected