Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions aredis_om/model/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1205,6 +1205,8 @@ def to_string(s):
offset = 1 # The first item is the count of total matches.

for i in range(1, len(res), step):
if res[i + offset] is None:
continue
fields = dict(
zip(
map(to_string, res[i + offset][::2]),
Expand Down