Skip to content

Commit

Permalink
Rename __azumthal to __azimuthal (#548)
Browse files Browse the repository at this point in the history
* typo fix

* style: pre-commit fixes

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 2a3daae commit 42afaa8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/vector/_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -2716,15 +2716,17 @@ def __new__(
) -> vector.MomentumObject4D: ...

@typing.overload
def __new__(cls, __azumthal: Azimuthal) -> Vector: ...
def __new__(cls, __azimuthal: Azimuthal) -> Vector: ...

@typing.overload
def __new__(cls, __azumthal: Azimuthal, __longitudinal: Longitudinal) -> Vector: ...
def __new__(
cls, __azimuthal: Azimuthal, __longitudinal: Longitudinal
) -> Vector: ...

@typing.overload
def __new__(
cls,
__azumthal: Azimuthal,
__azimuthal: Azimuthal,
__longitudinal: Longitudinal,
__temporal: Temporal,
) -> Vector: ...
Expand Down

0 comments on commit 42afaa8

Please sign in to comment.