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 Nov 7, 2023
1 parent 3b50f3d commit bf895a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion echopype/convert/parse_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def _parse_and_pad_datagram(
chunks = auto_chunks(
chunks=chunks, shape=data_shape, limit=max_chunk_size, dtype=np.dtype("float64")
)
chunks = chunks + data_shape[2:] # Get the n dimension sizes if > 2D
chunks = chunks + data_shape[2:] # Get the n dimension sizes if > 2D
chunks = tuple([c[0] if isinstance(c, tuple) else c for c in chunks])

# Go through data for each channel
Expand Down

0 comments on commit bf895a1

Please sign in to comment.