Skip to content

Commit a5dc14a

Browse files
committed
remve unnecessary comment
1 parent f383a03 commit a5dc14a

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
@@ -117,7 +117,7 @@ def build_map(self, index_headers: HeaderArray) -> None:
117117
live_dim_indices = []
118118
for dim in self.dims[:-1]:
119119
dim_hdr = index_headers[dim.name][start:end]
120-
indices = np.searchsorted(dim, dim_hdr).astype(np.uint32) # Use uint32
120+
indices = np.searchsorted(dim, dim_hdr).astype(np.uint32)
121121
live_dim_indices.append(indices)
122122
live_dim_indices = tuple(live_dim_indices)
123123

0 commit comments

Comments
 (0)