STAR-322: Reverting change to run mypy

This commit is contained in:
Daniel Schiavini 2018-12-17 14:42:16 +01:00
parent 75d7d49349
commit 42ae9faeb4

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")):