Skip to content

Commit c888551

Browse files
committed
fix
1 parent a28644b commit c888551

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/includes/interact-data/specify-a-query.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def __str__(self):
5454
# start-filter-combine
5555
Movie.objects.filter(
5656
(Q(title__startswith="Funny") | Q(title__startswith="Laugh"))
57-
& ~Q(genres__contains=["Comedy"]))
57+
& ~Q(genres__contains=["Comedy"])
58+
)
5859
# end-filter-combine
5960

6061
# start-sort

0 commit comments

Comments
 (0)