def drop_table(self): """Delete an existing table.""" try: self.query("DROP TABLE {}".format(self.table)) except ProgrammingError: pass