Skip to content

Commit bbe4844

Browse files
committed
Fix snippet to not use tab.
We should add support for '\t', but that should probably be a separate ticket.
1 parent b726e67 commit bbe4844

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/snippets/builtin_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
assert format(5, "b") == "101"
22

33
try:
4-
format(2, 3)
4+
format(2, 3)
55
except TypeError:
66
pass
77
else:

0 commit comments

Comments
 (0)