Skip to content

Commit

Permalink
fix codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
rly committed Jun 2, 2024
1 parent ba7f943 commit f139d0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ the fields (i.e., when the constructor sets some fields to fixed values). @rly
Each sub-table is itself a DynamicTable that is aligned with the main table by row index. Each subtable
defines a sub-category in the main table effectively creating a table with sub-headings to organize columns.
@oruebel (#551)
- Add tutoral for new `AlignedDynamicTable` type. @oruebel (#571)
- Add tutorial for new `AlignedDynamicTable` type. @oruebel (#571)
- Equality check for `DynamicTable` now also checks that the name and description of the table are the same. @rly (#566)

### Internal improvements
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ norecursedirs = "tests/unit/helpers"

[tool.codespell]
skip = "htmlcov,.git,.mypy_cache,.pytest_cache,.coverage,*.pdf,*.svg,venvs,.tox,hdmf-common-schema,./docs/_build/*,*.ipynb"
ignore-words-list = "datas"
ignore-words-list = "datas,assertIn"

[tool.coverage.run]
branch = true
Expand Down
2 changes: 1 addition & 1 deletion src/hdmf/data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ class ShapeValidatorResult:
{'name': 'message', 'type': str,
'doc': 'Message describing the result of the shape validation', 'default': None},
{'name': 'ignored', 'type': tuple,
'doc': 'Axes that have been ignored in the validaton process', 'default': tuple(), 'shape': (None,)},
'doc': 'Axes that have been ignored in the validation process', 'default': tuple(), 'shape': (None,)},
{'name': 'unmatched', 'type': tuple,
'doc': 'List of axes that did not match during shape validation', 'default': tuple(), 'shape': (None,)},
{'name': 'error', 'type': str, 'doc': 'Error that may have occurred. One of ERROR_TYPE', 'default': None},
Expand Down

0 comments on commit f139d0c

Please sign in to comment.