Skip to content

Commit

Permalink
Fix flake8 violation in tests/functional/sqs/merge_split_common_table…
Browse files Browse the repository at this point in the history
…/test.py
  • Loading branch information
siarheivesialou committed Jan 3, 2024
1 parent 080882e commit 6131536
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ydb/tests/functional/sqs/merge_split_common_table/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ def alter_table(self, table_path):
ydb.retry_operation_sync(lambda: session.alter_table(
table_path,
alter_partitioning_settings=ydb.PartitioningSettings()
.with_min_partitions_count(1)
.with_partition_size_mb(1)
.with_partitioning_by_size(ydb.FeatureFlag.ENABLED)
.with_partitioning_by_load(ydb.FeatureFlag.ENABLED),
.with_min_partitions_count(1)
.with_partition_size_mb(1)
.with_partitioning_by_size(ydb.FeatureFlag.ENABLED)
.with_partitioning_by_load(ydb.FeatureFlag.ENABLED),
add_columns=(
ydb.Column(
self.__column_to_force_split,
Expand Down

0 comments on commit 6131536

Please sign in to comment.