Skip to content

Commit

Permalink
another bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
rsokl committed Sep 7, 2024
1 parent a576784 commit 78b7321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mygrad/operation_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def grad_post_process_fn(
if NP_IS_V2:
out = np.asarray(out)
else: # pragma: no cover
np.array(out, copy=False)
out = np.array(out, copy=False)
return out

@abstractmethod
Expand Down

0 comments on commit 78b7321

Please sign in to comment.