Skip to content

Commit 3ba170e

Browse files
committed
add tests for export rechunker
1 parent 2c53ffd commit 3ba170e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mdio/segy/utilities.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ def get_grid_plan(
9999

100100

101101
def segy_export_rechunker(
102-
chunks: tuple[int],
103-
shape: tuple[int],
102+
chunks: tuple[int, ...],
103+
shape: tuple[int, ...],
104104
dtype: npt.DTypeLike,
105105
limit: str = "300M",
106-
) -> tuple[int]:
106+
) -> tuple[int, ...]:
107107
"""Determine chunk sizes for writing out SEG-Y given limit.
108108
109109
This module finds the desired chunk sizes for given chunk size

0 commit comments

Comments
 (0)