From 8f382d54a1634eefe9c0c4c2a60169ba999e9f6b Mon Sep 17 00:00:00 2001 From: Emma Cooper Date: Mon, 24 Jun 2024 14:18:48 -0600 Subject: [PATCH] Shorted line length to 79 characters --- docs/examples/snow-detection/snow-mode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/snow-detection/snow-mode.py b/docs/examples/snow-detection/snow-mode.py index 306c3806..699afa6f 100644 --- a/docs/examples/snow-detection/snow-mode.py +++ b/docs/examples/snow-detection/snow-mode.py @@ -90,8 +90,8 @@ print(f"Inverter MPPT range: {mppt_low_voltage} V - {mppt_high_voltage} V") num_str_per_cb = config['num_str_per_cb']['INV1 CB1'] num_mods_per_str = config['num_mods_per_str']['INV1 CB1'] -print(f"There are {num_mods_per_str} modules connected in series in each string," - f" and there are {num_str_per_cb} strings connected in" +print(f"There are {num_mods_per_str} modules connected in series in each," + f" string and there are {num_str_per_cb} strings connected in" f" parallel at each combiner")