Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Saransh-cpp committed Oct 3, 2023
1 parent cdede4f commit db661a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vector/backends/numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ def __array_ufunc__(
) -> typing.Any:
"""
Implements NumPy's ``ufunc``s for ``VectorNumpy``. The current implementation
includes ``numpy.absolute``, ``numpy.add``, ``numpy.subtract``, ``numpy.multipy``,
includes ``numpy.absolute``, ``numpy.add``, ``numpy.subtract``, ``numpy.multiply``,
``numpy.positive``, ``numpy.negative``, ``numpy.true_divide``, ``numpy.power``,
``numpy.square``, ``numpy.sqrt``, ``numpy.cbrt``, ``numpy.matmul``, ``numpy.equal``,
and ``numpy.not_equal``.
Expand Down
2 changes: 1 addition & 1 deletion src/vector/backends/object.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def __array_ufunc__(
"""
Implements NumPy's ``ufunc``s for ``VectorObject`` and its subclasses. The current
implementation includes ``numpy.absolute``, ``numpy.add``, ``numpy.subtract``,
``numpy.multipy``, ``numpy.positive``, ``numpy.negative``, ``numpy.true_divide``,
``numpy.multiply``, ``numpy.positive``, ``numpy.negative``, ``numpy.true_divide``,
``numpy.power``, ``numpy.square``, ``numpy.sqrt``, ``numpy.cbrt``, ``numpy.matmul``,
``numpy.equal``, and ``numpy.not_equal``.
"""
Expand Down

0 comments on commit db661a7

Please sign in to comment.