(
self,
trace_spans=TRACE_REPR_SPAN_DETAILS,
trace_thresholds=TRACE_REPR_THRESHOLDS,
trace_rule=TRACE_REPR_MATCHED_RULE,
trace_text=TRACE_REPR_ALL_MATCHED_TEXTS,
)
| 258 | ) |
| 259 | |
| 260 | def __repr__( |
| 261 | self, |
| 262 | trace_spans=TRACE_REPR_SPAN_DETAILS, |
| 263 | trace_thresholds=TRACE_REPR_THRESHOLDS, |
| 264 | trace_rule=TRACE_REPR_MATCHED_RULE, |
| 265 | trace_text=TRACE_REPR_ALL_MATCHED_TEXTS, |
| 266 | ): |
| 267 | return self.representation( |
| 268 | trace_spans=trace_spans, |
| 269 | trace_thresholds=trace_thresholds, |
| 270 | trace_rule=trace_rule, |
| 271 | trace_text=trace_text, |
| 272 | ) |
| 273 | |
| 274 | def representation( |
| 275 | self, |
nothing calls this directly
no test coverage detected