Skip to content

Commit

Permalink
Fix runtime error in Data.burst_sizes()
Browse files Browse the repository at this point in the history
  • Loading branch information
tritemio committed Jan 9, 2015
1 parent d57b1b4 commit 2e525c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fretbursts/burstlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ def burst_sizes(self, gamma=1., gamma1=None, add_naa=False):
List of arrays of burst sizes, one array per channel.
"""
kwargs = dict(gamma=gamma, gamma1=gamma1, add_naa=add_naa)
bsize_list = [self.get_burst_size(ich, **kwargs) for ich in
bsize_list = [self.burst_sizes_ich(ich, **kwargs) for ich in
range(self.nch)]
return np.array(bsize_list)

Expand Down

0 comments on commit 2e525c2

Please sign in to comment.