Skip to content

Commit 1bb9eee

Browse files
committed
style fix
1 parent 30f50ae commit 1bb9eee

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/azure-cli/azure/cli/command_modules/rdbms/validators.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,11 +444,15 @@ def _pg_version_validator(version, versions, is_create):
444444
if version not in versions:
445445
raise CLIError('Incorrect value for --version. Allowed values : {}'.format(versions))
446446
if version == '12':
447-
logger.warning('Support for PostgreSQL 12 has officially ended. As a result, the option to select PG12 will be removed in the near future. We recommend selecting PostgreSQL 13 or a later version for all future operations.')
447+
logger.warning("Support for PostgreSQL 12 has officially ended. As a result, "
448+
"the option to select version 12 will be removed in the near future. "
449+
"We recommend selecting PostgreSQL 13 or a later version for "
450+
"all future operations.")
448451

449452
if is_create:
450453
# Warning for upcoming breaking change to default value of pg version
451-
logger.warning('The default value for the PostgreSQL server major version will be updating to 17 in the near future.')
454+
logger.warning("The default value for the PostgreSQL server major version "
455+
"will be updating to 17 in the near future.")
452456

453457

454458
def _pg_high_availability_validator(high_availability, standby_availability_zone, zone, tier, single_az, instance):

0 commit comments

Comments
 (0)