From 127b4b7976412a0b85feec66931838db0daf7711 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 6 Jan 2023 13:31:12 +0100 Subject: [PATCH] fix typing --- packaging/msi/create_windows_msi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/msi/create_windows_msi.py b/packaging/msi/create_windows_msi.py index d2d3a7bfd5..ad595179db 100644 --- a/packaging/msi/create_windows_msi.py +++ b/packaging/msi/create_windows_msi.py @@ -73,7 +73,7 @@ def cleanup_artifacts(dist_path: Path): shutil.rmtree(d, ignore_errors=True) -def build(dist_path: Path, filename: str): +def build(dist_path: Path, filename: Path): dist_loc = Path(os.getcwd(), dist_path) work_loc = work_path(filename) wxs_loc = work_loc.joinpath("UltiMaker-Cura.wxs")