Skip to content

Commit

Permalink
fix: Skip fourth header line in agribalyse csv (#6568)
Browse files Browse the repository at this point in the history
  • Loading branch information
dipietroR committed Apr 8, 2022
1 parent ce4eb51 commit 915716d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ProductOpener/Ecoscore.pm
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ sub load_agribalyse_data() {

my $row_ref;

# Skip 3 first lines
# Skip 4 first lines
$csv->getline ($io);
$csv->getline ($io);
$csv->getline ($io);
$csv->getline ($io);
Expand Down

0 comments on commit 915716d

Please sign in to comment.