Skip to content

Commit 267ef3e

Browse files
committed
fixed linting
1 parent 9741614 commit 267ef3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/azure-cli/azure/cli/command_modules/acs/_validators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ def validate_ssh_key(namespace):
6565
"file share, back up your keys to a safe location",
6666
private_key_filepath, public_key_filepath)
6767
else:
68-
if (not content or str(content).strip() == "" or
69-
(content == os.path.join(os.path.expanduser('~'), '.ssh', 'id_rsa.pub'))):
68+
if (not content or str(content).strip() == "" or
69+
(content == os.path.join(os.path.expanduser('~'), '.ssh', 'id_rsa.pub'))):
7070
namespace.no_ssh_key = True
7171
return
7272
raise CLIError(

0 commit comments

Comments
 (0)