Replies: 1 comment 3 replies
-
Are you expecting this abstract class to be modified so that all objects inheriting from it implement the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Checked
Feature request
BlobLoader.yield_blobs returns Iterable, it should be Iterator like in BaseLoader
Motivation
BaseLoader.lazy_load yields an Iterator. The method in BlobLoader is call yield yield_blobs, yet it returns an Iterable. The return type should be Iterator[Blob].
Proposal (If applicable)
BaseLoader.lazy_load yields an Iterator. The method in BlobLoader is call yield yield_blobs, yet it returns an Iterable. The return type should be Iterator[Blob].
Beta Was this translation helpful? Give feedback.
All reactions