From 95d14dd48e0e9e55becfe747eec5010f7b6bae40 Mon Sep 17 00:00:00 2001 From: cube Date: Sat, 30 May 2026 22:28:29 +0000 Subject: [PATCH] Update example_timeline_all.py --- example_timeline_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_timeline_all.py b/example_timeline_all.py index 57c7307..d091a94 100644 --- a/example_timeline_all.py +++ b/example_timeline_all.py @@ -13,6 +13,6 @@ if len(stats.races) > 0: # prints in reverse so you dont have to scroll up to the most recent :P count = len(race.timeline) - 1 for item in race.timeline: - print(item[count]) + print(race.timeline[count]) print("===================") count -= 1 \ No newline at end of file