From 33b73e2af8f6f333971af8c5c21498d6cacdb9f7 Mon Sep 17 00:00:00 2001 From: Miroslav Stoyanov Date: Wed, 30 Oct 2024 15:42:39 -0400 Subject: [PATCH] fix tuple typo --- python/asgard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/asgard.py b/python/asgard.py index d68810dc7..186222ec4 100644 --- a/python/asgard.py +++ b/python/asgard.py @@ -279,7 +279,7 @@ def __str__(self): asgplot.title(shot.title, fontsize = 'large') if shot.num_dimensions == 1: - z, x = shot.plot_data1d((()), num_points = 256) + z, x = shot.plot_data1d(((),), num_points = 256) asgplot.plot(x, z) asgplot.xlabel(shot.dimension_names[0], fontsize = 'large') else: