(self, id, wait_min)
| 334 | waiter.wait(deploymentId=id, WaiterConfig=config) |
| 335 | |
| 336 | def _show_deploy_wait_msg(self, id, wait_min): |
| 337 | sys.stdout.write( |
| 338 | self.MSG_WAITING.format(deployment_id=id, wait=wait_min) |
| 339 | ) |
| 340 | sys.stdout.flush() |
| 341 | |
| 342 | |
| 343 | class CodeDeployValidator: |
no test coverage detected