(self, attr, req, res)
| 166 | self.dbdict = cachinglm.dbdict |
| 167 | |
| 168 | def add_partial(self, attr, req, res) -> None: |
| 169 | if self.dbdict is None: |
| 170 | return |
| 171 | hsh = hash_args(attr, req) |
| 172 | self.dbdict[hsh] = res |
| 173 | |
| 174 | |
| 175 | class CachingLM: |
no test coverage detected