Skip to content

Commit d3cadd2

Browse files
committed
Fix last test
1 parent 4bd20b6 commit d3cadd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/typecheck/managers/querysets/test_querysetany.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
foo(obj)
1717
bar(obj)
1818
19-
if isinstance(obj, QuerySet): # E: Parameterized generics cannot be used with class or instance checks [misc]
19+
if isinstance(obj, QuerySet):
2020
reveal_type(obj) # N: Revealed type is "django.db.models.query.QuerySet[Any, Any]"
2121
foo(obj)
2222
bar(obj)

0 commit comments

Comments
 (0)