all: Update Python code to conform to latest black formatting.

Updating to Black v20.8b1 there are two changes that affect the code in
this repository:

- If there is a trailing comma in a list (eg [], () or function call) then
  that list is now written out with one line per element.  So remove such
  trailing commas where the list should stay on one line.

- Spaces at the start of """ doc strings are removed.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2020-08-29 15:14:29 +10:00
parent 0c7354afaf
commit 06659077a8
19 changed files with 50 additions and 42 deletions

View File

@@ -216,7 +216,10 @@ def main():
default="cc3200_af.csv",
)
parser.add_argument(
"-b", "--board", dest="board_filename", help="Specifies the board file",
"-b",
"--board",
dest="board_filename",
help="Specifies the board file",
)
parser.add_argument(
"-p",