Skip to content

Commit 4bb1d5c

Browse files
committed
Fix formating using black-checker.
1 parent 6abfcf7 commit 4bb1d5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def read_version():
8686
"black==19.3b0 ; python_version >= '3.6'",
8787
"stopit==1.1.2",
8888
"apache-airflow==1.10.5",
89-
"docker-compose>=1.23.0"
89+
"docker-compose>=1.23.0",
9090
]
9191
},
9292
entry_points={"console_scripts": ["sagemaker=sagemaker.cli.main:main"]},

src/sagemaker/local/image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, instance_type, instance_count, image, sagemaker_session=None)
7979
from sagemaker.local.local_session import LocalSession
8080

8181
# check if docker-compose is installed
82-
if find_executable('docker-compose') is None:
82+
if find_executable("docker-compose") is None:
8383
raise ImportError(
8484
"'docker-compose' is not installed. "
8585
"Local Mode features will not work without docker-compose. "

0 commit comments

Comments
 (0)