Skip to content

Commit 13482d9

Browse files
Fix formatting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3ade4c4 commit 13482d9

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

nx/lib/nx/binary_backend.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,7 @@ defmodule Nx.BinaryBackend do
714714
defp element_add(_, a, b), do: Complex.add(a, b)
715715
defp element_subtract(_, a, b), do: Complex.subtract(a, b)
716716
defp element_multiply(_, a, b), do: Complex.multiply(a, b)
717+
717718
defp element_divide(_, a, b) when is_number(a) and is_number(b) and b != 0 do
718719
Complex.divide(a, b)
719720
end

0 commit comments

Comments
 (0)