aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools/transforms/entities.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_tools/transforms/entities.py')
-rw-r--r--python/fatcat_tools/transforms/entities.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/transforms/entities.py b/python/fatcat_tools/transforms/entities.py
index e5da633f..4066297b 100644
--- a/python/fatcat_tools/transforms/entities.py
+++ b/python/fatcat_tools/transforms/entities.py
@@ -58,7 +58,7 @@ def entity_to_toml(
def entity_from_toml(
- toml_str: str, entity_type: Any, api_client: Optional[List[str]] = None
+ toml_str: str, entity_type: Any, api_client: Optional[ApiClient] = None
) -> Any:
obj = toml.loads(toml_str)
return entity_from_dict(obj, entity_type, api_client=api_client)