(self)
| 175 | return self.sql.strip(" \t\n;") |
| 176 | |
| 177 | def strip_comments(self) -> str: |
| 178 | return sqlparse.format(self.stripped(), strip_comments=True) |
| 179 | |
| 180 | def get_statements(self) -> List[str]: |
| 181 | """Returns a list of SQL statements as strings, stripped""" |
no test coverage detected