Print a section header.
(title: str)
| 79 | time.sleep(0.3) |
| 80 | raise TimeoutError(f"{table_name} did not become ACTIVE within {timeout}s") |
| 81 | def section(title: str) -> None: |
| 82 | """Print a section header.""" |
| 83 | print(f"\n{'='*60}") |
| 84 | print(f" {title}") |
| 85 | print(f"{'='*60}\n") |
| 86 | def delete_table_safe(client, table_name: str) -> None: |
| 87 | """Delete a table, ignoring ResourceNotFoundException.""" |
| 88 | try: |
no outgoing calls
no test coverage detected