Skip to content

Commit 6f37836

Browse files
fix format (#861)
1 parent 6243cc8 commit 6f37836

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gsplat/compression/sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def sort_splats(splats: Dict[str, Tensor], verbose: bool = True) -> Dict[str, Te
3232
sort_keys = ["means", "quats", "scales", "opacities"]
3333
if "sh0" in splats:
3434
sort_keys.append("sh0")
35-
35+
3636
params_to_sort = torch.cat([splats[k].reshape(n_gs, -1) for k in sort_keys], dim=-1)
3737
shuffled_indices = torch.randperm(
3838
params_to_sort.shape[0], device=params_to_sort.device

0 commit comments

Comments
 (0)