From ece3005f42c7f3595f46ed290a6a6da9191a7a21 Mon Sep 17 00:00:00 2001 From: lakshyacis Date: Wed, 9 Oct 2019 18:57:51 +0530 Subject: [PATCH] helper_sent pylint fixes --- src/helper_sent.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)