Skip to content

Commit 2834e63

Browse files
committed
fixed the string in between triple quotes issue
Signed-off-by: sancheet230 <[email protected]>
1 parent 511a08d commit 2834e63

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/mvt/database.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,12 @@ def create_feedback_table(conn):
135135
response_snippet TEXT,
136136
reason TEXT,
137137
timestamp TEXT
138-
# ==================== ADDITIONAL FUNCTIONS FOR OTHER TABLES ====================
138+
);'''
139+
# ==================== ADDITIONAL FUNCTIONS FOR OTHER TABLES ====================
140+
conn.cursor().execute(sql)
141+
conn.commit()
142+
except sqlite3.Error as e:
143+
print(e)
139144

140145
def create_response_table(conn):
141146
"""Create a table to store responses"""

0 commit comments

Comments
 (0)