Skip to content

Commit 5b841f3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a187b40 commit 5b841f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django-subscriptions-rxdb/src/api/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def filterHeroes(
4949
if not updatedAt:
5050
qs = []
5151
else:
52-
qs = [(Q(updatedAt__gt=updatedAt) | (Q(updatedAt=updatedAt) & Q(id__gt=id)))]
52+
qs = [Q(updatedAt__gt=updatedAt) | (Q(updatedAt=updatedAt) & Q(id__gt=id))]
5353

5454
return [
5555
Hero(

0 commit comments

Comments
 (0)