Revert incorrect change to run_mypy

This commit is contained in:
Daniel Schiavini 2019-01-17 13:00:42 +01:00
parent badb0b0ca9
commit 2b27c8c1a9

View File

@ -29,7 +29,6 @@ def where(exe_name: str, search_path: str = os.getenv("PATH")) -> str:
def findModules(path):
return ["UM3NetworkPrinting"]
result = []
for entry in os.scandir(path):
if entry.is_dir() and os.path.exists(os.path.join(path, entry.name, "__init__.py")):