black style tweaks: add trailing commas

This commit is contained in:
Erik Sundell
2021-06-28 15:09:13 +02:00
committed by Erik Sundell
parent 962a630f53
commit 411663b5d4
10 changed files with 41 additions and 13 deletions

View File

@@ -26,7 +26,8 @@ def test_check_extension(container, extension):
"""
LOGGER.info(f"Checking the extension: {extension} ...")
c = container.run(
tty=True, command=["start.sh", "jupyter", "labextension", "check", extension]
tty=True,
command=["start.sh", "jupyter", "labextension", "check", extension],
)
rv = c.wait(timeout=10)
logs = c.logs(stdout=True).decode("utf-8")