We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c53ffd commit 3ba170eCopy full SHA for 3ba170e
1 file changed
src/mdio/segy/utilities.py
@@ -99,11 +99,11 @@ def get_grid_plan(
99
100
101
def segy_export_rechunker(
102
- chunks: tuple[int],
103
- shape: tuple[int],
+ chunks: tuple[int, ...],
+ shape: tuple[int, ...],
104
dtype: npt.DTypeLike,
105
limit: str = "300M",
106
-) -> tuple[int]:
+) -> tuple[int, ...]:
107
"""Determine chunk sizes for writing out SEG-Y given limit.
108
109
This module finds the desired chunk sizes for given chunk size
0 commit comments