Skip to content

Commit

Permalink
CELE-78 Ignore mypy error in FakeBucket
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcorreia committed Sep 26, 2024
1 parent 1796d8e commit 028e072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ingestion/ingestion/storage/gcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def blob(self, *_) -> Blob:
return FakeBlob() # type:ignore

def patch(self, *_): ...
def list_blobs(self, *_, **kwargs) -> Iterable[Any]: ...
def list_blobs(self, *_, **kwargs) -> Iterable[Any]: ... # type:ignore


class RemoteStorage:
Expand Down

0 comments on commit 028e072

Please sign in to comment.