File size: 589 Bytes
0955862 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import warnings
warnings.filterwarnings("ignore", message=".*TqdmWarning.*")
from dotenv import load_dotenv
_ = load_dotenv()
from tools import create_workout_table_graph
from app import WorkoutTableGUI
# This file is kept for backward compatibility
# The functionality has been moved to tools.py and app.py
def create_workout_table():
"""
Create an workout table instance with the graph and GUI
"""
graph = create_workout_table_graph()
return WorkoutTableGUI(graph)
if __name__ == "__main__":
workout_table = create_workout_table()
workout_table.launch()
|