From bdb51b3e313c54e477153dee2993df3ee1fa1341 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Tue, 2 Jan 2024 13:14:05 +0100 Subject: [PATCH] Expose `dump_terms` from top level --- gilda/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gilda/__init__.py b/gilda/__init__.py index 711b28f..eed47a9 100644 --- a/gilda/__init__.py +++ b/gilda/__init__.py @@ -5,7 +5,7 @@ from .api import get_grounder, get_models, get_names, ground, make_grounder, annotate from .grounder import Grounder, ScoredMatch from .pandas_utils import ground_df, ground_df_map -from .term import Term +from .term import Term, dump_terms __all__ = [ 'ground', @@ -14,6 +14,7 @@ 'get_names', 'get_grounder', 'make_grounder', + "dump_terms", # Classes 'Term', 'Grounder',