Listing 13 - Page 0: No Title

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 13\13.1592 - No Title.py
# Description: No Title
##############################################################################

def update(self, site):
    if self.table.exists(site.id):
        self.table.item(site.id, text="",
            values=(site.url, site.category, site.date, site.notes))
    else:
        self.add_site_to_table(site)
    self.manager.sites[site.id] = site
Click here to download the file