Get the last query executed or None.
(self)
| 1324 | return string |
| 1325 | |
| 1326 | def get_last_query(self): |
| 1327 | """Get the last query executed or None.""" |
| 1328 | return self.query_history[-1][0] if self.query_history else None |
| 1329 | |
| 1330 | def is_too_wide(self, line): |
| 1331 | """Will this line be too wide to fit into terminal?""" |
no outgoing calls
no test coverage detected