Skip to content

Commit 7cc98a1

Browse files
Update cloudpub/ms_azure/utils.py
Suggestion by sourcery-ai Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
1 parent 37ef905 commit 7cc98a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloudpub/ms_azure/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def _all_skus_present(old_skus: List[VMISku], disk_versions: List[DiskVersion])
316316

317317
def get_unsupported_security_type_arches() -> List[str]:
318318
"""Return the list of arches that don't support security type."""
319-
return UNSUPPORTED_SECURITY_TYPE_ARCHES.split(",")
319+
return [arch.strip() for arch in UNSUPPORTED_SECURITY_TYPE_ARCHES.split(",")]
320320

321321

322322
def _build_skus(

0 commit comments

Comments
 (0)