diff --git a/src/helper_sent.py b/src/helper_sent.py index 75682fa9..5a345fe7 100644 --- a/src/helper_sent.py +++ b/src/helper_sent.py @@ -1,6 +1,9 @@ """ -Insert operation into sent table +Insert values into sent table """ +from helper_sql import * + def insert(t): + """Perform an insert into the `sent` table""" sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)