Skip to content

Commit

Permalink
Merge pull request #236 from the-virtual-brain/fix_wavelet_h5
Browse files Browse the repository at this point in the history
Fixed little problem when uploading WaveletCoefficientsH5 files.
  • Loading branch information
VinczeRobert authored Sep 9, 2020
2 parents 552f5b2 + 0305bc1 commit 4e53cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework_tvb/tvb/adapters/datatypes/db/spectral.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def fill_from_has_traits(self, datatype):
self.q_ratio = datatype.q_ratio
self.sample_period = datatype.sample_period
self.number_of_scales = datatype.frequencies.shape[0]
self.frequencies_min, self.frequencies_max, _ = from_ndarray(datatype.frequency)
self.frequencies_min, self.frequencies_max, _ = from_ndarray(datatype.frequencies)
self.fk_source_gid = datatype.source.gid.hex


Expand Down

0 comments on commit 4e53cbb

Please sign in to comment.