From 6dd77be66de3ff6d2f5ee35fad457bb269711266 Mon Sep 17 00:00:00 2001 From: SET Date: Sat, 15 Aug 2020 22:18:12 -0300 Subject: [PATCH] Cut extra long line. --- kiplot/bom/bom.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kiplot/bom/bom.py b/kiplot/bom/bom.py index d5349cd2..eaafec0b 100644 --- a/kiplot/bom/bom.py +++ b/kiplot/bom/bom.py @@ -476,7 +476,8 @@ def do_bom(file_name, ext, comps, cfg): config = c.get_field_value(f_config).lower() c.fitted = comp_is_fitted(value, config, variants) if cfg.debug_level > 2: - logger.debug('ref: {} value: {} config: {} variants: {} -> fitted {}'.format(c.ref, value, config, variants, c.fitted)) + logger.debug('ref: {} value: {} config: {} variants: {} -> fitted {}'. + format(c.ref, value, config, variants, c.fitted)) c.fixed = comp_is_fixed(value, config, variants) # Group components according to group_fields groups = group_components(cfg, comps)