From f9bb7afcc607fe6158c8016b4e434cafb6fb8601 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 4 Mar 2024 11:07:35 +0100 Subject: [PATCH] Add-on: fix mypy warnings No functional changes. --- addon/flamenco/projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/flamenco/projects.py b/addon/flamenco/projects.py index fb551b5e..6d4281d8 100644 --- a/addon/flamenco/projects.py +++ b/addon/flamenco/projects.py @@ -45,7 +45,7 @@ def _finder_subversion(blendfile: Path) -> Path: def _search_path_marker(blendfile: Path, marker_path: str) -> Path: """Go up the directory hierarchy until a file or directory 'marker_path' is found.""" - blendfile_dir = bpathlib.make_absolute(blendfile).parent + blendfile_dir: Path = bpathlib.make_absolute(blendfile).parent directory = blendfile_dir while True: