From c7c93160d6cbafd939a8ef8b3ad70cc99f4f519c Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Fri, 18 Aug 2023 15:59:25 +0200 Subject: [PATCH] Update testing.py --- src/biomappings/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/biomappings/testing.py b/src/biomappings/testing.py index 11c04b80..6e86550d 100644 --- a/src/biomappings/testing.py +++ b/src/biomappings/testing.py @@ -128,7 +128,7 @@ def test_contributors(self): source = mapping["source"] if not source.startswith("orcid:"): self.assertTrue(source.startswith("web-")) - ss = source[len("web-")] + ss = source[len("web-") :] self.fail(msg=f'Add an entry with "{ss}" and your ORCID to {CURATORS_PATH}') self.assertIn(source[len("orcid:") :], contributor_orcids)