[red-knot] Add missing imports in mdtests (#15869)

## Summary

Related to #15848, this PR adds the imports explicitly as we'll now flag
these symbols as undefined.

---------

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Dhruv Manilawala
2025-02-03 14:57:29 +05:30
committed by GitHub
parent 30d5e9a2af
commit d082c1b202
21 changed files with 71 additions and 7 deletions

View File

@@ -97,7 +97,7 @@ reveal_type(A.__mro__) # revealed: tuple[Literal[A], Unknown, Literal[object]]
`typing.Tuple` can be used interchangeably with `tuple`:
```py
from typing import Tuple
from typing import Any, Tuple
class A: ...