We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b770373 commit 9bd5cecCopy full SHA for 9bd5cec
pyproject.toml
@@ -23,6 +23,7 @@ classifiers = [
23
requires-python = ">=3.8"
24
dependencies = [
25
"bidsschematools >=0.11",
26
+ "typing_extensions",
27
"attrs",
28
"httpx",
29
]
src/bids_validator/types/files.py
@@ -5,9 +5,10 @@
5
import stat
6
from functools import cached_property
7
from pathlib import Path
8
-from typing import Dict, Self, Union
+from typing import Dict, Union
9
10
import attrs
11
+from typing_extensions import Self # PY310
12
13
__all__ = ('FileTree',)
14
0 commit comments