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

committed by
Erik Sundell

parent
962a630f53
commit
411663b5d4
@@ -9,7 +9,8 @@ LOGGER = logging.getLogger(__name__)
|
||||
def test_spark_shell(container):
|
||||
"""Checking if Spark (spark-shell) is running properly"""
|
||||
c = container.run(
|
||||
tty=True, command=["start.sh", "bash", "-c", 'spark-shell <<< "1+1"']
|
||||
tty=True,
|
||||
command=["start.sh", "bash", "-c", 'spark-shell <<< "1+1"'],
|
||||
)
|
||||
c.wait(timeout=60)
|
||||
logs = c.logs(stdout=True).decode("utf-8")
|
||||
|
Reference in New Issue
Block a user