(self)
| 20 | return f"<SQLite3 Database: {self.db_fp}>" |
| 21 | |
| 22 | def connect(self): |
| 23 | self.conn = sqlite3.connect(self.db_fp) |
| 24 | self.cur = self.conn.cursor() |
| 25 | |
| 26 | def create_tables(self): |
| 27 | self.cur.execute('CREATE TABLE IF NOT EXISTS programm_settings(setting TEXT NOT NULL, status BOOLEAN NOT NULL)') |
no outgoing calls
no test coverage detected