Skip to content

Commit 607630b

Browse files
committed
fix: remove whitespace from blank line (ruff W293)
1 parent be1332d commit 607630b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

strings/min_cost_string_conversion.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ def assemble_transformation(ops: list[list[str]], i: int, j: int) -> list[str]:
9696
>>> assemble_transformation(ops2, 2, 3)
9797
['C1', 'I2', 'R23']
9898
"""
99+
99100
if i == 0 and j == 0:
100101
return []
101102
elif ops[i][j][0] in {"C", "R"}:

0 commit comments

Comments
 (0)