Skip to content

Commit

Permalink
Fix p2 -> p3 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lnauta committed Aug 7, 2024
1 parent 3c4e174 commit 137428e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picas/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def save_documents(self, docs):
updated = self.db.update([doc.value for doc in docs])

result = [False] * len(docs)
for i in enumerate(docs):
for i, doc in enumerate(docs):
is_added, _id, _rev = updated[i]
if is_added:
docs[i]['_id'] = _id
Expand Down

0 comments on commit 137428e

Please sign in to comment.