Skip to content

Commit f364b9e

Browse files
committed
Fix unknown parameter error
1 parent 8f430a0 commit f364b9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mdio/segy/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def delayed_transform(builder: MDIODatasetBuilder) -> MDIODatasetBuilder:
5454

5555
# Add the trace dimension
5656
trace_dimension = NamedDimension(name="trace", size=trace_size)
57-
builder.push_dimension(trace_dimension, position=position, new_dim_chunk_size=1, new_dim_size=trace_size)
57+
builder.push_dimension(trace_dimension, position=position, new_dim_chunk_size=1)
5858

5959
# Add the corresponding coordinate for the trace dimension
6060
builder.add_coordinate(

0 commit comments

Comments
 (0)