We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01965f4 commit f3d61d0Copy full SHA for f3d61d0
src/sssom/io.py
@@ -185,6 +185,8 @@ def extract_iris(
185
return sorted(set(chain.from_iterable(extract_iris(p, converter) for p in pred_list)))
186
if isinstance(input, list):
187
return sorted(set(chain.from_iterable(extract_iris(p, converter) for p in input)))
188
+ if isinstance(input, tuple):
189
+ return sorted(set(chain.from_iterable(extract_iris(p, converter) for p in input)))
190
if converter.is_uri(input):
191
return [converter.standardize_uri(input, strict=True)]
192
if converter.is_curie(input):
0 commit comments