test blocks


def hide_popup():
    '''Withdraw (hide) popup window and
       delete all entries from table called
       chosen.'''

    top.withdraw() # hide the popup window using withdraw command

    try:

        with sqlite3.connect(DB) as myDB:

            sql_curs = myDB.cursor()

            sql_curs.execute('DELETE FROM chosen;')

            myDB.commit()

    except sqlite3.OperationalError as e:

        print(e)

This is a test of a code plugin

list1 = [1,2,3,4,5]

for item in list:

    print(item)