Skip to content

Commit 8a5033e

Browse files
authored
fixed the string in between triple quotes issue (#125)
Signed-off-by: sancheet230 <sancheet.p24@medhaviskillsuniversity.edu.in>
1 parent 511a08d commit 8a5033e

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)