Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iNishant committed Apr 27, 2024
1 parent 82d8fad commit 777f082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ from django_querysets_single_query_fetch.service import QuerysetsSingleQueryFetc
querysets = [QuerysetCountWrapper(queryset=queryset1), queryset2, ...]
results = QuerysetsSingleQueryFetch(querysets=querysets)

assert results == [queryset.count(), list(queryset2), ...]
assert results == [queryset1.count(), list(queryset2), ...]
```


Expand Down

0 comments on commit 777f082

Please sign in to comment.