From 13a70bb13ed07501454b17fd2e237a81333ab24d Mon Sep 17 00:00:00 2001 From: Florian Rupprecht Date: Thu, 20 Jun 2024 17:16:10 +0900 Subject: [PATCH] typing --- bids2table/entities.py | 3 +-- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bids2table/entities.py b/bids2table/entities.py index d491641..4f22dc5 100644 --- a/bids2table/entities.py +++ b/bids2table/entities.py @@ -9,12 +9,11 @@ from pathlib import Path from types import MappingProxyType from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple, Union -from typing_extensions import Self import bidsschematools.schema import pandas as pd from elbow.typing import StrOrPath -from typing_extensions import get_args, get_origin +from typing_extensions import Self, get_args, get_origin _bids_schema_path: Optional[str] = None diff --git a/pyproject.toml b/pyproject.toml index 51e6fc4..c687003 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ dependencies = [ "nibabel", "pandas", "bidsschematools", + "typing_extensions", ] dynamic = ["version"]