]> git.mxchange.org Git - fba.git/blobdiff - fba/helpers/dicts.py
Continued:
[fba.git] / fba / helpers / dicts.py
index 0d6b8be9735af473f56909192f609b1dfb300af2..cd9ccbde4ae4c5c8f436719423cbf2a032351f0f 100644 (file)
@@ -32,6 +32,7 @@ def has_key(lists: list, key: str, value: any) -> bool:
     logger.debug("Checking lists()=%d ...", len(lists))
     for row in lists:
         logger.debug("row[%s]='%s", type(row), row)
+
         if not isinstance(row, dict):
             raise ValueError(f"row[]='{type(row)}' is not of type 'dict'")
         elif not key in row: