(self, i, max_wait, query_cl)
| 5050 | return [] |
| 5051 | |
| 5052 | def _get_query_trace(self, i, max_wait, query_cl): |
| 5053 | trace = self._query_traces[i] |
| 5054 | if not trace.events: |
| 5055 | trace.populate(max_wait=max_wait, query_cl=query_cl) |
| 5056 | return trace |
| 5057 | |
| 5058 | def add_callback(self, fn, *args, **kwargs): |
| 5059 | """ |
no test coverage detected