(self, file: IO[bytes])
| 130 | return NamedTemporaryFile(prefix="feed-", dir=path) |
| 131 | |
| 132 | def store(self, file: IO[bytes]) -> Deferred[None] | None: |
| 133 | return deferred_from_coro(run_in_thread(self._store_in_thread, file)) |
| 134 | |
| 135 | @abstractmethod |
| 136 | def _store_in_thread(self, file: IO[bytes]) -> None: |
nothing calls this directly
no test coverage detected