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 21266ff commit 72f6ab6Copy full SHA for 72f6ab6
src/sssom/parsers.py
@@ -290,6 +290,7 @@ def parse_sssom_table(
290
meta: Optional[MetadataType] = None,
291
*,
292
strict: bool = False,
293
+ **kwargs: Any,
294
) -> MappingSetDataFrame:
295
"""Parse a SSSOM TSV.
296
@@ -304,9 +305,13 @@ def parse_sssom_table(
304
305
companion SSSOM YAML file.
306
:param strict:
307
If true, will fail parsing for undefined prefixes, CURIEs, or IRIs
308
+ :param kwargs:
309
+ Additional keyword arguments (unhandled)
310
:returns:
311
A parsed dataframe wrapper object
312
"""
313
+ if kwargs:
314
+ logging.warning("unhandled keyword arguments passed: %s", kwargs)
315
if isinstance(file_path, Path) or isinstance(file_path, str):
316
raise_for_bad_path(file_path)
317
stream: io.StringIO = _open_input(file_path)
0 commit comments