Skip to content

Commit 49a99c1

Browse files
committed
linter
1 parent ccf17fe commit 49a99c1

File tree

1 file changed

+3
-1
lines changed
  • packages/aws-library/src/aws_library/ssm

1 file changed

+3
-1
lines changed

packages/aws-library/src/aws_library/ssm/_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ async def wait_for_has_instance_completed_cloud_init(
135135
command_name="cloud-init status",
136136
)
137137
# wait for command to complete
138-
waiter = self._client.get_waiter("command_executed")
138+
waiter = self._client.get_waiter( # pylint: disable=assignment-from-no-return
139+
"command_executed"
140+
)
139141
try:
140142
await waiter.wait(
141143
CommandId=cloud_init_status_command.command_id,

0 commit comments

Comments
 (0)