Skip to content

Commit 667bfc7

Browse files
committed
removed parentheses
1 parent 8b4f4cd commit 667bfc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/stacks/lexicographical_numbers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def lexical_order(max_number: int) -> Iterator[int]:
2424
if num > max_number:
2525
continue
2626

27-
yield (num)
27+
yield num
2828
if (num % 10) != 9:
2929
stack.append(num + 1)
3030

0 commit comments

Comments
 (0)