From 163d0408b758811f7270d9bd81ba0ebcf25d0dac Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Sun, 27 Oct 2024 15:45:39 -0400 Subject: [PATCH] Add no cover pragma to TMD-specific code --- taxcalc/taxcalcio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taxcalc/taxcalcio.py b/taxcalc/taxcalcio.py index a070f1be4..d459f3686 100644 --- a/taxcalc/taxcalcio.py +++ b/taxcalc/taxcalcio.py @@ -550,7 +550,7 @@ def write_output_file(self, output_dump, dump_varset, outdf = self.minimal_output() column_order = outdf.columns assert len(outdf.index) == self.calc.array_len - if self.tmd_input_data: + if self.tmd_input_data: # pragma: no cover if "s006" in outdf: weights = outdf["s006"].round(5) outdf = outdf.round(2)