From d0e27da9dcd8c50197d76cb82a556322088f7c02 Mon Sep 17 00:00:00 2001 From: Dominik Gresch Date: Wed, 22 Nov 2023 07:41:04 +0100 Subject: [PATCH] Fix type hints for paths --- src/ansys/dpf/composites/_typing_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/dpf/composites/_typing_helper.py b/src/ansys/dpf/composites/_typing_helper.py index 9ac0b5c5a..3ac338fc2 100644 --- a/src/ansys/dpf/composites/_typing_helper.py +++ b/src/ansys/dpf/composites/_typing_helper.py @@ -4,4 +4,4 @@ __all__ = ["PATH"] -PATH = Union[str, os.PathLike] +PATH = Union[str, os.PathLike[str]]