()
| 10 | |
| 11 | |
| 12 | def catching_dep() -> Any: |
| 13 | try: |
| 14 | yield "s" |
| 15 | except CustomError as err: |
| 16 | raise HTTPException(status_code=418, detail="Session error") from err |
| 17 | |
| 18 | |
| 19 | def broken_dep() -> Any: |
nothing calls this directly
no test coverage detected
searching dependent graphs…