Skip to content

Commit 7785753

Browse files
committed
SSSOM allows non ASCII characters, so skip that check
1 parent 6ad78d5 commit 7785753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sssom_validate_ui/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def _run_sssom_validation(self):
7070
validate(msdf=self.msdf, validation_types=validation_types, fail_on_error=False)
7171

7272
def _run_tsvalid_validation(self):
73-
validates(self.sssom_text, comment="#", exceptions=[], summary=True, fail=False)
73+
validates(self.sssom_text, comment="#", exceptions=["W1"], summary=True, fail=False)
7474

7575
def run(self):
7676
"""Run the SSSOM validation and conversion."""

0 commit comments

Comments
 (0)