From ec70ac23c3a44b69dc7854cca37eecb71dc64d35 Mon Sep 17 00:00:00 2001 From: SET Date: Wed, 12 Aug 2020 15:56:29 -0300 Subject: [PATCH] Excluded from coverage the lines ocluded by the macros. --- kiplot/out_bom.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kiplot/out_bom.py b/kiplot/out_bom.py index a953977e..bf38ba5c 100644 --- a/kiplot/out_bom.py +++ b/kiplot/out_bom.py @@ -85,7 +85,7 @@ class BoMHTML(Optionable): """ Page style. Internal styles: modern-blue, modern-green, modern-red and classic. Or you can provide a CSS file name. Please use .css as file extension. """ self.title = 'KiBot Bill of Materials' - """ BoM title """ + """ BoM title """ # pragma: no cover def config(self): super().config() @@ -125,7 +125,7 @@ class BoMCSV(Optionable): self.hide_stats_info = False """ Hide statistics information """ self.quote_all = False - """ Enclose all values using double quotes """ + """ Enclose all values using double quotes """ # pragma: no cover class BoMXLSX(Optionable): @@ -154,7 +154,7 @@ class BoMXLSX(Optionable): self.style = 'modern-blue' """ Head style: modern-blue, modern-green, modern-red and classic. """ self.title = 'KiBot Bill of Materials' - """ BoM title """ + """ BoM title """ # pragma: no cover def config(self): super().config()