Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
IanCa committed Apr 4, 2024
1 parent a7ccd3a commit 9bf38b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hed/validator/hed_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, hed_schema, def_dicts=None, definitions_allowed=False):
self._def_validator = DefValidator(def_dicts, hed_schema)
self._definitions_allowed = definitions_allowed

self._validate_characters = schema.schema_83_props
self._validate_characters = hed_schema.schema_83_props

self._unit_validator = UnitValueValidator(modern_allowed_char_rules=self._validate_characters)
self._char_validator = CharValidator(modern_allowed_char_rules=self._validate_characters)
Expand Down
2 changes: 1 addition & 1 deletion tests/validator/test_tag_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ def test_special_units(self):
test_strings = {
'ascii': 'Ascii/bad-date',
'illegalTab': 'Ascii/bad-dat\t',
'allowTab': 'Nonascii/Caf\t',
'allowTab': 'Nonascii/Cafe\t',
}
expected_results = {
'ascii': True,
Expand Down

0 comments on commit 9bf38b8

Please sign in to comment.