Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Aug 23, 2024
1 parent f33f768 commit 0990a35
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/nwbinspector/_dandi_inspection.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ def inspect_dandiset(
*,
dandiset_id: str,
dandiset_version: Union[str, Literal["draft"], None] = None,
checks: Optional[list] = None,
ignore: Optional[List[str]] = None,
select: Optional[List[str]] = None,
checks: Union[list, None] = None,
ignore: Union[List[str], None] = None,
select: Union[List[str], None] = None,
importance_threshold: Union[str, Importance] = Importance.BEST_PRACTICE_SUGGESTION,
client: Union["dandi.dandiapi.DandiAPIClient", None] = None,
) -> Iterable[InspectorMessage]:
Expand Down Expand Up @@ -87,9 +87,9 @@ def inspect_dandi_file_path(
dandi_file_path: str,
dandiset_id: str,
dandiset_version: Union[str, Literal["draft"], None] = None,
checks: Optional[list] = None,
ignore: Optional[List[str]] = None,
select: Optional[List[str]] = None,
checks: Union[list, None] = None,
ignore: Union[List[str], None] = None,
select: Union[List[str], None] = None,
importance_threshold: Union[str, Importance] = Importance.BEST_PRACTICE_SUGGESTION,
client: Union["dandi.dandiapi.DandiAPIClient", None] = None,
) -> Iterable[InspectorMessage]:
Expand Down

0 comments on commit 0990a35

Please sign in to comment.