Skip to content

Commit 87007c0

Browse files
author
Mikolaj Umanski
committed
lint fix
1 parent e06e58a commit 87007c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,9 +828,11 @@ def validate_disable_windows_outbound_nat(namespace):
828828
raise ArgumentUsageError(
829829
'--disable-windows-outbound-nat can only be set for Windows nodepools')
830830

831+
831832
def validate_message_of_the_day(namespace):
832833
"""Validates message of the day can only be used on Linux."""
833834
if namespace.message_of_the_day is not None and namespace.message_of_the_day != "":
834835
if namespace.os_type is not None and namespace.os_type != "Linux":
835836
raise ArgumentUsageError(
836-
'--message-of-the-day can only be set for linux nodepools')
837+
'--message-of-the-day can only be set for linux nodepools')
838+

0 commit comments

Comments
 (0)