Skip to content

Commit

Permalink
Merge pull request #1053 from Karinon/develop
Browse files Browse the repository at this point in the history
Score fix in cf 1.6
  • Loading branch information
benjwadams authored Apr 15, 2024
2 parents 2be8fd4 + 9f98bc6 commit 1ef8cc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions compliance_checker/cf/cf_1_6.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def check_fill_value_equal_missing_value(self, ds):

return Result(
BaseCheck.MEDIUM,
(len(fails), total),
(total - len(fails), total),
self.section_titles["2.5"],
msgs=fails,
)
Expand Down Expand Up @@ -455,7 +455,7 @@ def check_valid_range_or_valid_min_max_present(self, ds):

return Result(
BaseCheck.MEDIUM,
(len(fails), total),
(total - len(fails), total),
self.section_titles["2.5"],
msgs=fails,
)
Expand Down
1 change: 0 additions & 1 deletion compliance_checker/cf/cf_1_7.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@ def check_cell_boundaries_interval(self, ds):
reasoning,
)
ret_val.append(result)
print(ret_val)
return ret_val

def check_cell_measures(self, ds):
Expand Down

0 comments on commit 1ef8cc2

Please sign in to comment.