mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-11 03:52:56 +00:00
black style tweaks: add trailing commas
This commit is contained in:

committed by
Erik Sundell

parent
962a630f53
commit
411663b5d4
@@ -10,7 +10,10 @@ LOGGER = logging.getLogger(__name__)
|
||||
def test_python_version(container, python_next_version="3.10"):
|
||||
"""Check that python version is lower than the next version"""
|
||||
LOGGER.info(f"Checking that python version is lower than {python_next_version}")
|
||||
c = container.run(tty=True, command=["start.sh"])
|
||||
c = container.run(
|
||||
tty=True,
|
||||
command=["start.sh"],
|
||||
)
|
||||
cmd = c.exec_run("python --version")
|
||||
output = cmd.output.decode("utf-8")
|
||||
actual_python_version = version.parse(output.split()[1])
|
||||
|
Reference in New Issue
Block a user