Skip to content

Commit 2453ae9

Browse files
committed
chore: 🚨 Fix lint errors
1 parent cc75bfb commit 2453ae9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/sagemaker/local/image.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@
5050
S3_ENDPOINT_URL_ENV_NAME = "S3_ENDPOINT_URL"
5151

5252
# SELinux Enabled
53-
SELINUX_ENABLED = os.environ.get("SAGEMAKER_LOCAL_SELINUX_ENABLED", "False").lower() in ["1", "true", "yes"]
53+
SELINUX_ENABLED = os.environ.get("SAGEMAKER_LOCAL_SELINUX_ENABLED", "False").lower() in [
54+
"1",
55+
"true",
56+
"yes",
57+
]
5458

5559
logger = logging.getLogger(__name__)
5660

0 commit comments

Comments
 (0)