From f139d0c2827756b6692ed2f3e3b802459e6ec2e2 Mon Sep 17 00:00:00 2001 From: rly Date: Sat, 1 Jun 2024 17:52:12 -0700 Subject: [PATCH] fix codespell --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/hdmf/data_utils.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a799ee53..5ed9984db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 67b13350b..f0a0b7fb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 diff --git a/src/hdmf/data_utils.py b/src/hdmf/data_utils.py index 0e83bde2d..c03665caa 100644 --- a/src/hdmf/data_utils.py +++ b/src/hdmf/data_utils.py @@ -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},