(status, message)
| 541 | |
| 542 | def cleanup_gcp_deployment(script_dir: str): # noqa: C901 |
| 543 | def log_status(status, message): |
| 544 | return { |
| 545 | "status": status, |
| 546 | "message": message, |
| 547 | "timestamp": datetime.utcnow().isoformat(), |
| 548 | } |
| 549 | |
| 550 | try: |
| 551 | yield log_status("info", "Gathering deployment information...") |
no outgoing calls
no test coverage detected