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 eb816b0 commit b3e6f68Copy full SHA for b3e6f68
mypy/metastore.py
@@ -131,7 +131,7 @@ def list_all(self) -> Iterable[str]:
131
for dir, _, files in os.walk(self.cache_dir_prefix):
132
dir = os.path.relpath(dir, self.cache_dir_prefix)
133
for file in files:
134
- yield os.path.join(dir, file)
+ yield os.path.normpath(os.path.join(dir, file))
135
136
137
SCHEMA = """
0 commit comments