From bf4679c025f7276f8fcc7e24901afaf9c09c67ac Mon Sep 17 00:00:00 2001 From: mathieulemieux Date: Tue, 24 Sep 2024 11:00:08 -0700 Subject: [PATCH] fix typos in equivalent_types() docstring --- pori_python/graphkb/match.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pori_python/graphkb/match.py b/pori_python/graphkb/match.py index 0c2dc11..f735408 100644 --- a/pori_python/graphkb/match.py +++ b/pori_python/graphkb/match.py @@ -290,9 +290,10 @@ def equivalent_types( Compare 2 variant types to determine if they should match Args: + conn: the graphkb connection object type1: type from the observed variant we want to match to the DB type2: type from the DB variant - string: Wether or not only the specific-to-generic ones are considered. + strict: wether or not only the specific-to-generic ones are considered. By default (false), not only specific types can match more generic ones, but generic types can also match more specific ones.