Skip to content

Commit

Permalink
Remove print statements that were used for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrivenaes committed Apr 16, 2021
1 parent c9d67f0 commit 7023298
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/fmu/tools/qcforward/_grid_quality.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,8 @@ def _evaluate_allcells(issue, inresult, prop, instatus):
result[issue.mode.upper() + "%"].append(actualpercent)
result[issue.mode.upper() + "RULE"].append(issue.expression)

print("XX", issue.limit, actualpercent)

if issue.compare == ">" and actualpercent > issue.limit:
status = issue.mode.upper()
print("XXX", status)
elif issue.compare == "<" and actualpercent < issue.limit:
status = issue.mode.upper()
else:
Expand Down

0 comments on commit 7023298

Please sign in to comment.