Skip to content

Commit 159e363

Browse files
forgot to invert the compairson
1 parent e703e0d commit 159e363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/textwrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ def dedent(text):
438438
margin_len = 0
439439

440440
for split in splitting:
441-
if ' \t' in split :
441+
if split in ' \t':
442442
margin_len += 1
443443
else:
444444
break

0 commit comments

Comments
 (0)