We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 579437b commit c0414b0Copy full SHA for c0414b0
raffle.py
@@ -3,10 +3,9 @@
3
import argparse
4
from random import shuffle
5
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")
+parser.add_argument("csv", help = "the location of the csv input")
+parser.add_argument("totalWinners", type = int, help = "total number of selected winners")
8
args = parser.parse_args()
9
-winlist = []
10
csvrow = open(args.csv)
11
totalWinners = args.totalWinners
12
with open(args.csv) as csvfile:
0 commit comments