Skip to content

Commit 1b6f5bb

Browse files
committed
Setting normalise variable to false unless passed as an argument.
1 parent 8dc26ab commit 1b6f5bb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tools/HistSet.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ def plot( self, plot_options = {} ):
6161

6262
if plot_options.has_key( 'normalise' ):
6363
normalise = plot_options['normalise']
64-
64+
else:
65+
normalise = False
66+
6567
if plot_type == 'shape_comparison':
6668
make_shape_comparison_plot( shapes = self.histograms,
6769
names = self.labels,

0 commit comments

Comments
 (0)