helper_sent pylint fixes

This commit is contained in:
lakshyacis 2019-10-09 18:57:51 +05:30
parent d271996ac1
commit ece3005f42
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
""" """
Insert operation into sent table Insert values into sent table
""" """
from helper_sql import *
def insert(t): def insert(t):
"""Perform an insert into the `sent` table"""
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t) sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)