From eef0aaf19892314549c50eca292100aa28113ac6 Mon Sep 17 00:00:00 2001 From: johnson2427 Date: Sat, 26 Oct 2024 06:14:12 -0500 Subject: [PATCH] fix: mypy error --- silverback/_build_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/silverback/_build_utils.py b/silverback/_build_utils.py index 144e913a..18409376 100644 --- a/silverback/_build_utils.py +++ b/silverback/_build_utils.py @@ -17,7 +17,7 @@ # Note: Python3.12 supports subclassing pathlib.Path class BasePath(Path): - _flavour = type(Path())._flavour + _flavour = type(Path())._flavour # type: ignore class FilePath(BasePath):