(self, conn)
| 187 | |
| 188 | |
| 189 | def dataset(self, conn): |
| 190 | logging.debug(self.query()) |
| 191 | r = conn.execute(self.query()).fetchall() |
| 192 | logging.debug('Done') |
| 193 | return r |
| 194 | |
| 195 | def output_report(self, conn): |
| 196 | self.output_fn(self, self.dataset(conn)) |
no test coverage detected