Skip to content

Commit 96bbcc8

Browse files
Fix line length to be below 120
1 parent 3711f09 commit 96bbcc8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/packet_trimming/packet_trimming_helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,8 @@ def create_blocking_scheduler(duthost):
391391
# Create blocking scheduler
392392
cmd_create = (
393393
f'sonic-db-cli CONFIG_DB hset "SCHEDULER|{BLOCK_DATA_PLANE_SCHEDULER_NAME}" '
394-
f'"type" {SCHEDULER_TYPE} "weight" {SCHEDULER_WEIGHT} "pir" {SCHEDULER_PIR} "meter_type" {SCHEDULER_METER_TYPE}'
394+
f'"type" {SCHEDULER_TYPE} "weight" {SCHEDULER_WEIGHT} "pir" {SCHEDULER_PIR} '
395+
f'"meter_type" {SCHEDULER_METER_TYPE}'
395396
)
396397
duthost.shell(cmd_create)
397398
logger.info(f"Successfully created blocking scheduler: {BLOCK_DATA_PLANE_SCHEDULER_NAME}")

0 commit comments

Comments
 (0)