Skip to content

Commit

Permalink
Squash stupid formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
mdurero committed Jun 18, 2024
1 parent 8c70026 commit f85da8f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/irj_checker/backend_irj/pas_calc.ml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ let gen_pas_calc_json_correctif fmt (test_data : irj_file) =
let rappels : rappel list option =
match test_data.rapp with
| None -> None
| Some rappels -> Some rappels.entrees_rappels in
| Some rappels -> Some rappels.entrees_rappels
in
Format.fprintf fmt
{|@[<h 2>{@,"formatAvis": "texte",@,"codesRevenu": [%a@,],@,"lignesRappel": [%a@,]@]|}
format_code_list test_data.prim.entrees
(Format.pp_print_option format_rappel_list) rappels;
{|@[<h 2>{@,"formatAvis": "texte",@,"codesRevenu": [%a@,],@,"lignesRappel": [%a@,]@]|}
format_code_list test_data.prim.entrees
(Format.pp_print_option format_rappel_list)
rappels;
Format.fprintf fmt "}"

0 comments on commit f85da8f

Please sign in to comment.