Skip to content

Commit

Permalink
Typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheChymera committed Jul 28, 2022
1 parent 6c4e18e commit b908987
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dandi/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,8 @@ def _bids_discover_and_validate(
else:
bids_datasets_to_validate = bids_datasets
bids_datasets_to_validate.sort()
valid_datasets: List[str] = []
invalid_datasets = []
valid_datasets: List[Path] = []
invalid_datasets: List[Path] = []
for bd in bids_datasets_to_validate:
validator_result = validate_bids(bd)
valid = is_valid(
Expand Down

0 comments on commit b908987

Please sign in to comment.