We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2738260 commit 37f2324Copy full SHA for 37f2324
1 file changed
src/langchain_google_spanner/graph_store.py
@@ -901,10 +901,12 @@ def __repr__(self) -> str:
901
Returns:
902
str: a string representation of the graph schema.
903
"""
904
- properties = {
905
- k: TypeUtility.spanner_type_to_schema_str(v)
906
- for k, v in self.properties.items()
907
- }
+ properties = CaseInsensitiveDict(
+ {
+ k: TypeUtility.spanner_type_to_schema_str(v)
+ for k, v in self.properties.items()
908
+ }
909
+ )
910
return json.dumps(
911
{
912
"Name of graph": self.graph_name,
0 commit comments