Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 1f38119

Browse files
committed
linting
1 parent 4d128c6 commit 1f38119

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/unit/v2_client/test_row.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,9 @@ def _delete_cells_helper(time_range=None):
304304
expected_mutation = DeleteRangeFromColumn(family=column_family_id, qualifier=column)
305305
if time_range is not None:
306306
timestamps = time_range._to_dict()
307-
expected_mutation.start_timestamp_micros = timestamps.get("start_timestamp_micros")
307+
expected_mutation.start_timestamp_micros = timestamps.get(
308+
"start_timestamp_micros"
309+
)
308310
expected_mutation.end_timestamp_micros = timestamps.get("end_timestamp_micros")
309311
_assert_mutations_equal(row._mutations, [expected_mutation])
310312

0 commit comments

Comments
 (0)