From c7ed3ca08f8a2c24c0621738fb8a3238fa94970f Mon Sep 17 00:00:00 2001 From: Haroon Feisal <38823870+haroonf@users.noreply.github.com> Date: Mon, 21 Mar 2022 14:21:25 -0400 Subject: [PATCH] Fixed style issues. (#30) Co-authored-by: Haroon Feisal --- src/containerapp/azext_containerapp/custom.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 657b5995e03..06a9c922c3b 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -1054,8 +1054,8 @@ def create_or_update_github_action(cmd, logger.warning('Verified GitHub repo and branch') except BadCredentialsException as e: raise ValidationError("Could not authenticate to the repository. Please create a Personal Access Token and use " - "the --token argument. Run 'az webapp deployment github-actions add --help' " - "for more information.") from e + "the --token argument. Run 'az webapp deployment github-actions add --help' " + "for more information.") from e except GithubException as e: error_msg = "Encountered GitHub error when accessing {} repo".format(repo) if e.data and e.data['message']: @@ -1172,8 +1172,8 @@ def delete_github_action(cmd, name, resource_group_name, token=None, login_with_ raise ValidationError("The token does not have appropriate access rights to repository {}.".format(repo)) except BadCredentialsException as e: raise CLIInternalError("Could not authenticate to the repository. Please create a Personal Access Token and use " - "the --token argument. Run 'az webapp deployment github-actions add --help' " - "for more information.") from e + "the --token argument. Run 'az webapp deployment github-actions add --help' " + "for more information.") from e except GithubException as e: error_msg = "Encountered GitHub error when accessing {} repo".format(repo) if e.data and e.data['message']: