Skip to content

Commit

Permalink
Merge pull request #5 from bcube-project/fix-format
Browse files Browse the repository at this point in the history
fix format
  • Loading branch information
bmxam authored Dec 3, 2024
2 parents 986be53 + 9022a5f commit 8e39abf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hdf5/read.jl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ function read_zone(zone, varnames, topo_dim, zone_space_dim, usr_space_dim, verb
end

# Resize the `coords` array if necessary
_space_dim = usr_space_dim > 0 ? usr_space_dim : compute_space_dim(topo_dim, coords; verbose)
_space_dim =
usr_space_dim > 0 ? usr_space_dim : compute_space_dim(topo_dim, coords; verbose)
coords = coords[:, 1:_space_dim]

# Read all elements
Expand Down

0 comments on commit 8e39abf

Please sign in to comment.