##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 13\13.1599 - No Title.py
# Description: No Title
##############################################################################
def load(self):
if name := askopenfilename(filetypes=[("JSON", "*.json")]):
self.clear()
self.manager.load(name)
self.show_data()