Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56061c9 commit 8449606Copy full SHA for 8449606
1 file changed
mypy/modulefinder.py
@@ -692,6 +692,7 @@ def load_stdlib_py_versions(custom_typeshed_dir: Optional[str]) -> Dict[str, Tup
692
result = {}
693
694
versions_path = os.path.join(stdlib_dir, "VERSIONS")
695
+ assert os.path.isfile(versions_path), (custom_typeshed_dir, versions_path, __file__)
696
with open(versions_path) as f:
697
for line in f:
698
line = line.strip()
0 commit comments