Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelvll committed Dec 30, 2023
1 parent 747e640 commit 3097999
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sky/provision/gcp/instance_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,8 @@ def _log_errors(errors: List[Dict[str, str]], e: Any, zone: str) -> None:
codes = ', '.join(repr(e.get('code', 'N/A')) for e in errors)
messages = '; '.join(
repr(e.get('message', 'N/A').strip('.')) for e in errors)
logger.warning(
f'create_instances: Got return code{plural} {codes} in '
f'{zone}: {messages}')
logger.warning(f'create_instances: Got return code{plural} {codes} in '
f'{zone}: {messages}')
else:
logger.warning(f'create_instances: Failed with reason: {e}')

Expand Down

0 comments on commit 3097999

Please sign in to comment.