Skip to content

Commit

Permalink
Fix MYPYC_BLACKLIST on Windows (#7032)
Browse files Browse the repository at this point in the history
This fixes an issue with dmypy run not working on Windows introduced in #6851.
  • Loading branch information
ethanhs committed Jun 21, 2019
1 parent 6bbc3df commit 48916e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def run(self):
# Need to be runnable as scripts
'__main__.py',
'sitepkgs.py',
'dmypy/__main__.py',
os.path.join('dmypy', '__main__.py'),

# Needs to be interpreted to provide a hook to interpreted plugins
'interpreted_plugin.py',
Expand Down

0 comments on commit 48916e6

Please sign in to comment.