Skip to content

Commit

Permalink
changelog and flake
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Dec 12, 2023
1 parent 3dce817 commit 47a8d96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Add `NWBHDF5IO.can_read()`. @bendichter [#1703](https://github.com/NeurodataWithoutBorders/pynwb/pull/1703)
- Add `pynwb.get_nwbfile_version()`. @bendichter [#1703](https://github.com/NeurodataWithoutBorders/pynwb/pull/1703)
- Updated timeseries data checks to warn instead of error when reading invalid files. @stephprince [#1793](https://github.com/NeurodataWithoutBorders/pynwb/pull/1793)
- Expose the the offset, conversion and channel conversion parameters in `mock_ElectricalSeries` [#1796](https://github.com/NeurodataWithoutBorders/pynwb/pull/1796)

## PyNWB 2.5.0 (August 18, 2023)

Expand Down
2 changes: 1 addition & 1 deletion src/pynwb/testing/mock/ecephys.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def mock_ElectricalSeries(
nwbfile: Optional[NWBFile] = None,
channel_conversion: Optional[np.ndarray] = None,
conversion: float = 1.0,
offset: float =0.,
offset: float = 0.,
) -> ElectricalSeries:
electrical_series = ElectricalSeries(
name=name or name_generator("ElectricalSeries"),
Expand Down

0 comments on commit 47a8d96

Please sign in to comment.