Skip to content

Commit 99bacc9

Browse files
committed
fix style.
1 parent 1a61811 commit 99bacc9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

paimon-python/pypaimon/write/partial_column_write.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ def _write_group(self, partition: GenericRow, first_row_id: int,
179179
expected_row_count = self.first_row_id_to_row_count_map.get(first_row_id, 0)
180180
if data.num_rows != expected_row_count:
181181
raise ValueError(
182-
f"Data row count ({data.num_rows}) does not match expected row count ({expected_row_count}) for first_row_id {first_row_id}")
182+
f"Data row count ({data.num_rows}) does not match expected row count ({expected_row_count}) "
183+
f"for first_row_id {first_row_id}")
183184

184185
# Create a file store write for this partition
185186
file_store_write = FileStoreWrite(self.table, self.commit_user)

0 commit comments

Comments
 (0)