From 5aee9db3978c65382b1c88cd28a1f1af12381fa8 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Wed, 12 May 2021 08:18:49 -0700 Subject: [PATCH] Split string to multiple lines --- src/board.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/board.py b/src/board.py index 267b24c..20d1fd1 100755 --- a/src/board.py +++ b/src/board.py @@ -233,7 +233,9 @@ elif board_id is None: package = str(pkg_resources.get_distribution("adafruit_platformdetect")).split() raise NotImplementedError( - "{1} version {2} was unable to identify the board and/or microcontroller running the {0} platform. Please be sure you have the latest packages running: 'pip3 install --upgrade adafruit-blinka adafruit-platformdetect'".format( + "{1} version {2} was unable to identify the board and/or microcontroller running " + "the {0} platform. Please be sure you have the latest packages running: 'pip3 install " + "--upgrade adafruit-blinka adafruit-platformdetect'".format( platform.system(), package[0], package[1] ) ) -- 2.49.0