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
[python/knowpro] storage.py: Add ListStorage class; and two small tweaks (#1441)
The `ListStorage` storage provider just returns plain lists for messages
and semantic refs, showing that in practice these are adequate.
Also:
- Remove` get_all()` from class `Collection `-- just use` c[:]`. It was
unused.
- Replace `collection._get_slice(start_at, start_at + batch_size)` with
`collection[start_at : start_at + batch_size]`.
0 commit comments