summaryrefslogtreecommitdiff
path: root/wk6/pset/dna/dna.py
diff options
context:
space:
mode:
Diffstat (limited to 'wk6/pset/dna/dna.py')
-rw-r--r--wk6/pset/dna/dna.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/wk6/pset/dna/dna.py b/wk6/pset/dna/dna.py
index d94b9f4..b6955f7 100644
--- a/wk6/pset/dna/dna.py
+++ b/wk6/pset/dna/dna.py
@@ -20,9 +20,7 @@ def main():
# TODO: Read database file into a variable
database = 'databases/' + sys.argv[1]
rows = []
- header = ''
with open(database) as file:
- header = csv.reader(file)
reader = csv.DictReader(file)
for row in reader:
rows.append(row)