In which file did you encounter the issue?
´python-docs-samples/firestore/cloud-client/snippets.py
Did you change the file? If so, how?
Line 884:
-washington_ref.update("population", firestore.Increment(50))
+washington_ref.update({"population": firestore.Increment(50)})
(the update parameters need to be passed as a dict)
Describe the issue
The original command raises an exception.
In which file did you encounter the issue?
´python-docs-samples/firestore/cloud-client/snippets.py
Did you change the file? If so, how?
Line 884:
(the update parameters need to be passed as a dict)
Describe the issue
The original command raises an exception.