File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11"""Primary functions for inspecting NWBFiles."""
22
33import json
4+ from collections .abc import Callable
45from pathlib import Path
56from types import FunctionType
67from typing import Optional , Union
78
89import jsonschema
910import yaml
10- from typing_extensions import Callable
1111
1212from ._registration import Importance , available_checks
1313
Original file line number Diff line number Diff line change 11"""Primary decorator used on a check function to add it to the registry and automatically parse its output."""
22
3+ from collections .abc import Callable
34from functools import wraps
45from typing import List , Optional , Union
56
89from pynwb import NWBFile
910from pynwb .ecephys import Device , ElectrodeGroup
1011from pynwb .file import Subject
11- from typing_extensions import Callable
1212
1313from ._types import Importance , InspectorMessage , Severity
1414
You can’t perform that action at this time.
0 commit comments