Skip to content

Commit b850d56

Browse files
committed
fixes pep8 E203, W291, W391
1 parent 5ee98f5 commit b850d56

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

code3/re02.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
hand = open('mbox-short.txt')
44
for line in hand:
55
line = line.rstrip()
6-
if re.search('^From:', line) :
6+
if re.search('^From:', line):
77
print(line)
8-

0 commit comments

Comments
 (0)