From 1ea14cd9997e8f2cf0e91b976fab7116d05e565c Mon Sep 17 00:00:00 2001 From: James Briggs <james.briggs@hotmail.com> Date: Wed, 12 Jun 2024 13:31:47 +0800 Subject: [PATCH] chore: lint --- tests/unit/encoders/test_clip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/encoders/test_clip.py b/tests/unit/encoders/test_clip.py index 15acb706..5225cf4a 100644 --- a/tests/unit/encoders/test_clip.py +++ b/tests/unit/encoders/test_clip.py @@ -38,7 +38,7 @@ class TestClipEncoder: with patch.dict("sys.modules", {"transformers": None}): with pytest.raises(ImportError) as error: CLIPEncoder() - + assert "install transformers" in str(error.value) def test_clip_encoder__import_errors_torch(self, mocker): -- GitLab