Skip to content

Commit c01dbdf

Browse files
committed
fixing style errors
1 parent fb17f16 commit c01dbdf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/containerapp/azext_containerapp/_validators.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ def _set_debug_defaults(cmd, namespace):
278278
if revision_containers:
279279
namespace.container = revision_containers[0]["name"]
280280

281+
281282
def validate_container_app_exists(cmd, resource_group_name, container_app_name):
282283
from ._client_factory import handle_raw_exception
283284
from ._clients import ContainerAppPreviewClient
@@ -368,4 +369,4 @@ def validate_basic_arguments(resource_group_name, container_app_name, **kwargs):
368369
for arg_name, arg_value in kwargs.items():
369370
if not arg_value:
370371
logger.debug("Additional argument validation failed: '%s' is empty or None", arg_name)
371-
raise ValidationError(f"{arg_name.replace('_', ' ').title()} is required.")
372+
raise ValidationError(f"{arg_name.replace('_', ' ').title()} is required.")

0 commit comments

Comments
 (0)