Skip to content

Commit

Permalink
change other updates
Browse files Browse the repository at this point in the history
  • Loading branch information
alifeee authored Mar 13, 2024
1 parent 2000540 commit 2ff2b9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,10 @@ cell_list = worksheet.findall(criteria_re)

```python
# Update a single cell
worksheet.update('B1', 'Bingo!')
worksheet.update_acell('Bingo!', 'B1')

# Update a range
worksheet.update('A1:B2', [[1, 2], [3, 4]])
worksheet.update([[1, 2], [3, 4]], 'A1:B2')

# Update multiple ranges at once
worksheet.batch_update([{
Expand Down

0 comments on commit 2ff2b9a

Please sign in to comment.