Skip to content

Commit c0414b0

Browse files
committed
cleanup and spacing fix
1 parent 579437b commit c0414b0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

raffle.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
import argparse
44
from random import shuffle
55
parser = argparse.ArgumentParser()
6-
parser.add_argument("csv",help = "the location of the csv input")
7-
parser.add_argument("totalWinners", type=int, help="total number of selected winners")
6+
parser.add_argument("csv", help = "the location of the csv input")
7+
parser.add_argument("totalWinners", type = int, help = "total number of selected winners")
88
args = parser.parse_args()
9-
winlist = []
109
csvrow = open(args.csv)
1110
totalWinners = args.totalWinners
1211
with open(args.csv) as csvfile:

0 commit comments

Comments
 (0)