From 8aabf0d4e9edea636936c995c770efd793a89470 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Tue, 2 Apr 2024 10:39:57 +0200 Subject: [PATCH] Update umls.py --- src/pyobo/sources/umls/umls.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pyobo/sources/umls/umls.py b/src/pyobo/sources/umls/umls.py index eeb18304..bedc6cc2 100644 --- a/src/pyobo/sources/umls/umls.py +++ b/src/pyobo/sources/umls/umls.py @@ -12,7 +12,6 @@ import bioregistry import pandas as pd -from tqdm import tqdm from tqdm.auto import tqdm from umls_downloader import open_umls, open_umls_semantic_types @@ -69,7 +68,7 @@ def get_obo() -> Obo: def get_semantic_types() -> Mapping[str, Set[str]]: - """Get UMLS""" + """Get UMLS semantic types for each term.""" dd = defaultdict(set) with open_umls_semantic_types() as file: for line in tqdm(file, unit_scale=True):