mirror of
https://github.com/langgenius/dify.git
synced 2026-02-23 17:10:55 -05:00
feat: mypy for all type check (#10921)
This commit is contained in:
@@ -32,7 +32,7 @@ class SupabaseStorage(BaseStorage):
|
||||
self.client.storage.from_(self.bucket_name).upload(filename, data)
|
||||
|
||||
def load_once(self, filename: str) -> bytes:
|
||||
content = self.client.storage.from_(self.bucket_name).download(filename)
|
||||
content: bytes = self.client.storage.from_(self.bucket_name).download(filename)
|
||||
return content
|
||||
|
||||
def load_stream(self, filename: str) -> Generator:
|
||||
|
||||
Reference in New Issue
Block a user