Skip to content

Commit

Permalink
Remove stray print statements. (#2517)
Browse files Browse the repository at this point in the history
  • Loading branch information
tadhg-ohiggins authored Oct 17, 2023
1 parent 405b184 commit d306e19
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion backend/audit/intakelib/checks/runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ def run_all_checks(ir, list_of_checks, section_name=None):
errors.append(res)
for fun in list_of_checks:
res = fun(ir)
print(fun)
if isinstance(res, list) and all(map(lambda v: isinstance(v, tuple), res)):
errors = errors + res
elif isinstance(res, tuple):
Expand Down
1 change: 0 additions & 1 deletion backend/audit/intakelib/mapping_notes_to_sefa.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def extract_notes_to_sefa(file):

ir = extract_workbook_as_ir(file)
run_all_general_checks(ir, FORM_SECTIONS.NOTES_TO_SEFA)
print("Done running all general checks")
new_ir = run_all_notes_to_sefa_transforms(ir)
run_all_notes_to_sefa_checks(new_ir)
result = _extract_generic_data(new_ir, params)
Expand Down

0 comments on commit d306e19

Please sign in to comment.