Skip to content

Commit 0070c31

Browse files
authored
remove comment repeating var name
1 parent a5dc14a commit 0070c31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mdio/core/grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def build_map(self, index_headers: HeaderArray) -> None:
107107
# Calculate batch size for processing
108108
memory_per_trace_index = index_headers.itemsize
109109
batch_size = int(self._TARGET_MEMORY_PER_BATCH / memory_per_trace_index)
110-
total_live_traces = index_headers.size # Total live traces
110+
total_live_traces = index_headers.size
111111

112112
# Process live traces in batches
113113
for start in range(0, total_live_traces, batch_size):

0 commit comments

Comments
 (0)