(self, key)
| 677 | return res |
| 678 | |
| 679 | def delete_counter(self, key): |
| 680 | self.conn.delete(self.counter_key(key)) |
| 681 | |
| 682 | def _result_keys(self): |
| 683 | return self.conn.scan_iter(match=self.result_prefix + b'*') |
nothing calls this directly
no test coverage detected