From 1519d692d9bf2a0bb6c53730da3a3ee39b3bf3f5 Mon Sep 17 00:00:00 2001 From: Cal W <20716204+calw20@users.noreply.github.com> Date: Fri, 18 Oct 2024 00:04:28 +1000 Subject: [PATCH] Graph all the things --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 4418ca4..e881257 100644 --- a/main.py +++ b/main.py @@ -348,7 +348,7 @@ def genGraph(gData: dict, showPlot: bool = True): print("Graphing Data") for shot in loaded_data: - if shot != loaded_data[-2]: continue + #if shot != loaded_data[-2]: continue genGraph(data[shot], showPlot=False) # This forces matplotlib to hang until I tell it to close all windows