You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently TableBundle's constructor requires a BlockIterator = Iterable[Tuple[BlockType, Optional[Any]]].
Could be nice to also allow creating a TableBundle from a plain Iterator[Table].
Currently this requires some bending backwards:
tables = [table1, table2, ...] # each of these is a Table object
b = TableBundle((BlockType.TABLE, t) for t in tables) # bit annoying!
The text was updated successfully, but these errors were encountered:
Currently
TableBundle
's constructor requires aBlockIterator = Iterable[Tuple[BlockType, Optional[Any]]]
.Could be nice to also allow creating a
TableBundle
from a plainIterator[Table]
.Currently this requires some bending backwards:
The text was updated successfully, but these errors were encountered: