()
| 153 | secret = "".join(["super", "-secret-", "key"]) |
| 154 | |
| 155 | def crash_with_headers_local(): |
| 156 | headers = {"X-API-Key": secret, "Content-Type": "application/json"} # noqa: F841 |
| 157 | raise KeyError("boom") |
| 158 | |
| 159 | try: |
| 160 | crash_with_headers_local() |
no outgoing calls
no test coverage detected