@@ -94,11 +94,9 @@ def _from_dict(cls, input_dict: dict[str, Any]) -> Mutation:
9494 Create a `Mutation` instance from a dictionary representation.
9595
9696 Args:
97- input_dict (dict[str, Any]): A dictionary representation of the mutation.
98-
97+ input_dict: A dictionary representation of the mutation.
9998 Returns:
10099 Mutation: A Mutation instance created from the dictionary.
101-
102100 Raises:
103101 ValueError: If the input dictionary is invalid or does not represent a valid mutation type.
104102 """
@@ -139,10 +137,10 @@ class SetCell(Mutation):
139137 Mutation to set the value of a cell.
140138
141139 Args:
142- family (str) : The name of the column family to which the new cell belongs.
143- qualifier (bytes | str) : The column qualifier of the new cell.
144- new_value (bytes | str | int) : The value of the new cell.
145- timestamp_micros (int | None) : The timestamp of the new cell. If `None`,
140+ family: The name of the column family to which the new cell belongs.
141+ qualifier: The column qualifier of the new cell.
142+ new_value: The value of the new cell.
143+ timestamp_micros: The timestamp of the new cell. If `None`,
146144 the current timestamp will be used. Timestamps will be sent with
147145 millisecond precision. Extra precision will be truncated. If -1, the
148146 server will assign a timestamp. Note that `SetCell` mutations with
@@ -207,13 +205,12 @@ class DeleteRangeFromColumn(Mutation):
207205 Mutation to delete a range of cells from a column.
208206
209207 Args:
210- family (str) : The name of the column family.
211- qualifier (bytes) : The column qualifier.
212- start_timestamp_micros (int | None) : The start timestamp of the range to
208+ family: The name of the column family.
209+ qualifier: The column qualifier.
210+ start_timestamp_micros: The start timestamp of the range to
213211 delete. `None` represents 0. Defaults to `None`.
214- end_timestamp_micros (int | None) : The end timestamp of the range to
212+ end_timestamp_micros: The end timestamp of the range to
215213 delete. `None` represents infinity. Defaults to `None`.
216-
217214 Raises:
218215 ValueError: If `start_timestamp_micros` is greater than `end_timestamp_micros`.
219216 """
@@ -254,7 +251,7 @@ class DeleteAllFromFamily(Mutation):
254251 Mutation to delete all cells from a column family.
255252
256253 Args:
257- family_to_delete (str) : The name of the column family to delete.
254+ family_to_delete: The name of the column family to delete.
258255 """
259256
260257 family_to_delete : str
@@ -287,8 +284,8 @@ class RowMutationEntry:
287284 Bigtable table.
288285
289286 Args:
290- row_key (bytes | str) : The key of the row to mutate.
291- mutations (Mutation | list[Mutation]) : The mutation or list of mutations to apply
287+ row_key: The key of the row to mutate.
288+ mutations: The mutation or list of mutations to apply
292289 to the row.
293290
294291 Raises:
@@ -358,7 +355,7 @@ def _from_dict(cls, input_dict: dict[str, Any]) -> RowMutationEntry:
358355 Create a `RowMutationEntry` instance from a dictionary representation.
359356
360357 Args:
361- input_dict (dict[str, Any]) : A dictionary representation of the mutation entry.
358+ input_dict: A dictionary representation of the mutation entry.
362359
363360 Returns:
364361 RowMutationEntry: A RowMutationEntry instance created from the dictionary.
0 commit comments