Skip to content

Commit 48916e6

Browse files
authored
Fix MYPYC_BLACKLIST on Windows (#7032)
This fixes an issue with dmypy run not working on Windows introduced in #6851.
1 parent 6bbc3df commit 48916e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def run(self):
8989
# Need to be runnable as scripts
9090
'__main__.py',
9191
'sitepkgs.py',
92-
'dmypy/__main__.py',
92+
os.path.join('dmypy', '__main__.py'),
9393

9494
# Needs to be interpreted to provide a hook to interpreted plugins
9595
'interpreted_plugin.py',

0 commit comments

Comments
 (0)