Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
ameya98 committed Dec 15, 2024
1 parent 5d72147 commit 4017473
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions e3nn_jax/_src/so3grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,7 @@ def __truediv__(self, other: Union[float, "SO3Signal"]) -> "SO3Signal":
f"Shapes of the two signals do not match: {self.shape} != {other.shape}"
)

return self.replace_values(
self.grid_values / other.grid_values
)
return self.replace_values(self.grid_values / other.grid_values)

return self * (1 / other)

Expand Down

0 comments on commit 4017473

Please sign in to comment.