From 7626525229fabf1c371921d770cb5071c1daa10e Mon Sep 17 00:00:00 2001 From: stas Date: Mon, 28 Mar 2022 12:48:13 -0700 Subject: [PATCH] adding type annotation --- src/deployment/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deployment/deploy.py b/src/deployment/deploy.py index 21090e1e22..645ac695b5 100644 --- a/src/deployment/deploy.py +++ b/src/deployment/deploy.py @@ -100,7 +100,7 @@ def gen_guid() -> str: return str(uuid.uuid4()) -def bicep_to_arm(bicep_template) -> str: +def bicep_to_arm(bicep_template: str) -> str: from azure.cli.core import ( get_default_cli )