Skip to content

Commit

Permalink
Fix last test
Browse files Browse the repository at this point in the history
  • Loading branch information
intgr committed May 2, 2024
1 parent 3d7517b commit d8ecc95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/typecheck/managers/querysets/test_querysetany.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
foo(obj)
bar(obj)
if isinstance(obj, QuerySet): # E: Parameterized generics cannot be used with class or instance checks [misc]
if isinstance(obj, QuerySet):
reveal_type(obj) # N: Revealed type is "django.db.models.query.QuerySet[Any, Any]"
foo(obj)
bar(obj)
Expand Down

0 comments on commit d8ecc95

Please sign in to comment.