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 02fcb65 commit 14e9f54Copy full SHA for 14e9f54
1 file changed
services/summary_cache.py
@@ -84,7 +84,9 @@ def fingerprint_workspace_storage(
84
}
85
86
87
-def _fingerprint_equal(a: dict[str, Any], b: dict[str, Any]) -> bool:
+def _fingerprint_equal(a: object, b: dict[str, Any]) -> bool:
88
+ if not isinstance(a, dict):
89
+ return False
90
return a == b
91
92
0 commit comments