Skip to content
Snippets Groups Projects
Commit fe842173 authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

Fix type hint error

parent 304bb3c1
No related branches found
No related tags found
2 merge requests!143Release 0.15.0,!135Add and fix more type hints
Pipeline #50085 passed with warnings
......@@ -176,7 +176,7 @@ def get_id_of_datatype(datatype: str) -> int:
q = "FIND RECORDTYPE {}".format(datatype)
# we cannot use unique=True here, because there might be subtypes
res = execute_query(q)
res: Container = execute_query(q) # type: ignore
if isinstance(res, int):
raise ValueError("FIND RECORDTYPE query returned an `int`")
res: List[Entity] = [el for el in res if el.name.lower() == datatype.lower()] # type: ignore
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment