diff --git a/zshot/linker/linker_tars.py b/zshot/linker/linker_tars.py index 463bce8..6d7124c 100644 --- a/zshot/linker/linker_tars.py +++ b/zshot/linker/linker_tars.py @@ -23,7 +23,7 @@ def __init__(self, default_entities: Optional[str] = "conll-short"): super().__init__() if not pkgutil.find_loader("flair"): raise Exception("Flair module not installed. You need to install Flair for using this class." - "Install it with: pip install flair>pip install =0.13") + "Install it with: pip install flair>=0.13") self.is_end2end = True self.default_entities = default_entities diff --git a/zshot/tests/mentions_extractor/test_gliner_mentions_extractor.py b/zshot/tests/mentions_extractor/test_gliner_mentions_extractor.py index 264e663..78fae8e 100644 --- a/zshot/tests/mentions_extractor/test_gliner_mentions_extractor.py +++ b/zshot/tests/mentions_extractor/test_gliner_mentions_extractor.py @@ -13,7 +13,7 @@ @pytest.fixture(scope="module", autouse=True) def teardown(): - logger.warning("Starting smxm tests") + logger.warning("Starting gliner tests") yield True gc.collect()