diff options
author | David Robertson <davidr@element.io> | 2023-02-07 15:24:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 15:24:44 +0000 |
commit | 2dff93099b5aa7e213da76a9c4b3de84385b58e1 (patch) | |
tree | 8b277a7fcb9b7d98bc03a113c16b3aa1edf8079e /synapse | |
parent | Proper types for tests.test_terms_auth (#15007) (diff) | |
download | synapse-2dff93099b5aa7e213da76a9c4b3de84385b58e1.tar.xz |
Typecheck tests.rest.media.v1.test_media_storage (#15008)
* Fix MediaStorage type hint * Typecheck tests.rest.media.v1.test_media_storage * Changelog * Remove assert and make the comment succinct * Fix syntax for olddeps
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/rest/media/v1/media_storage.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/synapse/rest/media/v1/media_storage.py b/synapse/rest/media/v1/media_storage.py index a5c3de192f..db25848744 100644 --- a/synapse/rest/media/v1/media_storage.py +++ b/synapse/rest/media/v1/media_storage.py @@ -46,10 +46,9 @@ from ._base import FileInfo, Responder from .filepath import MediaFilePaths if TYPE_CHECKING: + from synapse.rest.media.v1.storage_provider import StorageProvider from synapse.server import HomeServer - from .storage_provider import StorageProviderWrapper - logger = logging.getLogger(__name__) @@ -68,7 +67,7 @@ class MediaStorage: hs: "HomeServer", local_media_directory: str, filepaths: MediaFilePaths, - storage_providers: Sequence["StorageProviderWrapper"], + storage_providers: Sequence["StorageProvider"], ): self.hs = hs self.reactor = hs.get_reactor() @@ -360,7 +359,7 @@ class ReadableFileWrapper: clock: Clock path: str - async def write_chunks_to(self, callback: Callable[[bytes], None]) -> None: + async def write_chunks_to(self, callback: Callable[[bytes], object]) -> None: """Reads the file in chunks and calls the callback with each chunk.""" with open(self.path, "rb") as file: |