Skip to content

Commit

Permalink
fix: Import Self from typing_extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Aug 15, 2024
1 parent 44ef2be commit 684e753
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
requires-python = ">=3.8"
dependencies = [
"bidsschematools >=0.11",
"typing_extensions",
"attrs",
"httpx",
]
Expand Down
3 changes: 2 additions & 1 deletion src/bids_validator/types/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
import stat
from functools import cached_property
from pathlib import Path
from typing import Dict, Self, Union
from typing import Dict, Union

import attrs
from typing_extensions import Self # PY310

__all__ = ('FileTree',)

Expand Down

0 comments on commit 684e753

Please sign in to comment.