Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9bb59e7

Browse files
committedJun 18, 2024·
fix linter errors
1 parent 24fd58c commit 9bb59e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/reactpy_django/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def django_query_postprocessor(
277277

278278
# `QuerySet`, which is an iterable of `Model`/`QuerySet` instances
279279
# https://github.com/typeddjango/django-stubs/issues/704
280-
if isinstance(data, QuerySet): # type: ignore[misc]
280+
if isinstance(data, QuerySet):
281281
for model in data:
282282
django_query_postprocessor(
283283
model,

0 commit comments

Comments
 (0)
Please sign in to comment.