(self)
| 195 | class NoUseStorage(BlackHoleStorage): |
| 196 | def enqueue(self, data, priority=None): raise NoUseException() |
| 197 | def dequeue(self): raise NoUseException() |
| 198 | def add_to_schedule(self, data, ts, utc): raise NoUseException() |
| 199 | def read_schedule(self, ts): raise NoUseException() |
| 200 | def put_data(self, key, value): raise NoUseException() |
no test coverage detected