Skip to content

Commit

Permalink
Merge pull request #4 from hhegab/patch-2
Browse files Browse the repository at this point in the history
Updated parser.dart
  • Loading branch information
GabrielTavernini authored May 29, 2020
2 parents dae2549 + d39e0a4 commit 85217e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Parser {
cD.criticalCases = parseInteger(row[19 + offset]);
cD.casesPerMln = parseDouble(row[21 + offset]);
cD.deathsPerMln = parseDouble(row[23 + offset]);
cD.totalTests = parseInteger(row[25 + offset]);
cD.testsPerMln = parseInteger(row[27 + offset]);
cD.totalTests = parseInteger(row[27 + offset]);
cD.testsPerMln = parseInteger(row[25 + offset]);
cD.link = link;
return cD;
}
Expand Down

0 comments on commit 85217e6

Please sign in to comment.