Skip to content

Commit

Permalink
fix tuple typo (#742)
Browse files Browse the repository at this point in the history
* small typo bug
  • Loading branch information
mkstoyanov authored Oct 31, 2024
1 parent 56171cc commit f7e7afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/asgard.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f7e7afe

Please sign in to comment.