Skip to content

Implement flag to allow typechecking of untyped modules #17712

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Dec 4, 2024
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
  • Loading branch information
pre-commit-ci[bot] committed Aug 27, 2024
commit 05466a3269caf02d23102228d6f70aed217537de
2 changes: 1 addition & 1 deletion mypy/modulefinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import subprocess
import sys
from enum import Enum, unique
from typing import cast, Dict, Final, List, NamedTuple, Optional, Tuple, Union
from typing import Dict, Final, List, NamedTuple, Optional, Tuple, Union, cast
from typing_extensions import TypeAlias as _TypeAlias

from mypy import pyinfo
Expand Down
Loading