Skip to content

Commit

Permalink
removed unused variable #573
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Letter committed Feb 17, 2016
1 parent 2175bbd commit 4f8272e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions web-server/plugins/slycat-csv-parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@ def isfloat(value):
# go through the csv by column
for column in zip(*rows):
column_has_floats = False
count = 0

# start from 1 to avoid the column name
for value in column[1:]:
count += 1
if isfloat(value):
column_has_floats = True
try:# note NaN's are floats
Expand Down

0 comments on commit 4f8272e

Please sign in to comment.