(self)
| 172 | return self._parsed[0].get_type() == "UNKNOWN" |
| 173 | |
| 174 | def stripped(self) -> str: |
| 175 | return self.sql.strip(" \t\n;") |
| 176 | |
| 177 | def strip_comments(self) -> str: |
| 178 | return sqlparse.format(self.stripped(), strip_comments=True) |
no outgoing calls
no test coverage detected