Skip to content

Commit 9ef4948

Browse files
committed
fix: black reformatting
1 parent 87b4c1c commit 9ef4948

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/stack/decode_string/solution.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ def decodeString(self, s: str) -> str:
66
for char in s:
77
if char.isdigit():
88
number.append(char)
9-
elif char == '[':
9+
elif char == "[":
1010
stack.append("".join(number))
1111
number = []
12-
elif char == ']':
12+
elif char == "]":
1313
alphas = []
1414
while stack[-1].isalpha():
1515
alphas.append(stack.pop())

0 commit comments

Comments
 (0)