We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acb8d58 commit 9689068Copy full SHA for 9689068
1 file changed
src/openlifu/util/types.py
@@ -2,5 +2,6 @@
2
from __future__ import annotations
3
4
import os
5
+from typing import Union
6
-PathLike = str|os.PathLike
7
+PathLike = Union[str,os.PathLike]
0 commit comments