]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 4 Jun 2023 19:08:32 +0000 (21:08 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 4 Jun 2023 19:08:32 +0000 (21:08 +0200)
- invocation, not calling ;-)

fba/cache.py

index 25adde245d0346d28a2e561b9860189dc5b2a694..790d88f8772ad3b146702d8b213380de5a79377e 100644 (file)
@@ -47,7 +47,7 @@ def set_sub_key(key: str, sub: str, value: any):
         raise ValueError("Parameter sub[]='{type(sub)}' is not 'str'")
     elif not key_exists(key):
         print(f"WARNING: Bad method call, key='{key}' is not initialized yet.")
-        raise Exception(f"Cache for key='{key}' is not initialized, but function called")
+        raise Exception(f"Cache for key='{key}' is not initialized, but function invoked")
 
     _cache[key][sub] = value
 
@@ -58,6 +58,6 @@ def sub_key_exists(key: str, sub: str) -> bool:
         raise ValueError("Parameter sub[]='{type(sub)}' is not 'str'")
     elif not key_exists(key):
         print(f"WARNING: Bad method call, key='{key}' is not initialized yet.")
-        raise Exception(f"Cache for key='{key}' is not initialized, but function called")
+        raise Exception(f"Cache for key='{key}' is not initialized, but function invoked")
 
     return sub in _cache[key]