(code)
| 29 | |
| 30 | |
| 31 | def _wrap(code): |
| 32 | import textwrap |
| 33 | ind = "\n".join(" " + l for l in textwrap.dedent(code).strip().splitlines()) |
| 34 | return f"def view(request):\n{ind}\n" |
| 35 | |
| 36 | |
| 37 | def taint_fires(code, rule_id): |
no outgoing calls
no test coverage detected