Skip to content

Commit

Permalink
docs: fix delete from column family example (#764)
Browse files Browse the repository at this point in the history
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/python-bigtable/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)

Fixes #<issue_number_goes_here> 🦕
  • Loading branch information
billyjacobson committed Apr 14, 2023
1 parent 18b8f18 commit 128b4e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/snippets/deletes/deletes_snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def delete_from_column_family(project_id, instance_id, table_id):
table = instance.table(table_id)
row = table.row("phone#4c410523#20190501")
row.delete_cells(
column_family_id="cell_plan", columns=["data_plan_01gb", "data_plan_05gb"]
column_family_id="cell_plan", columns=row.ALL_COLUMNS
)
row.commit()

Expand Down

0 comments on commit 128b4e1

Please sign in to comment.