Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 18, 2022
1 parent 8c48565 commit 0e9dd27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/unit_tests/test_image_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ def test_check_image_series_external_file_valid_bytestring_pass(self):
"""Can't use the NWB file since the call to io.write() decodes the bytes with modern versions of h5py."""
good_external_path = Path(self.nwbfile.acquisition["TestImageSeriesGoodExternalPaths"].external_file[0])
image_series = ImageSeries(
name="TestImageSeries", rate=1.0, external_file=[bytes("/".join([".", good_external_path.name]), "utf-8")],
name="TestImageSeries",
rate=1.0,
external_file=[bytes("/".join([".", good_external_path.name]), "utf-8")],
)
assert check_image_series_external_file_relative(image_series=image_series) is None

Expand Down

0 comments on commit 0e9dd27

Please sign in to comment.