Fix query hashing

This commit is contained in:
2023-01-26 17:12:49 +01:00
parent 0d7d35aa04
commit 9db1a76d70
2 changed files with 15 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
from typing import Any
def default(value: Any):
if isinstance(value, frozenset):
list_value = list(value)
return "-".join(sorted(list_value))
return value