An input type for sanitizing user/untrusted input.
| 48 | |
| 49 | |
| 50 | class Clean(BaseInput): |
| 51 | """ |
| 52 | An input type for sanitizing user/untrusted input. |
| 53 | """ |
| 54 | |
| 55 | input_type_name = "clean" |
| 56 | |
| 57 | def prepare(self, query_obj): |
| 58 | query_string = super().prepare(query_obj) |
| 59 | return query_obj.clean(query_string) |
| 60 | |
| 61 | |
| 62 | class Exact(BaseInput): |
no outgoing calls
no test coverage detected
searching dependent graphs…