(self, query_warning # type: QueryProblem
)
| 125 | |
| 126 | class QueryWarning(QueryProblem): |
| 127 | def __init__(self, query_warning # type: QueryProblem |
| 128 | ): |
| 129 | super().__init__(query_warning) |
| 130 | |
| 131 | def __repr__(self): |
| 132 | return "QueryWarning:{}".format(super()._raw) |