Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Schefflera-Arboricola authored Dec 22, 2024
1 parent 2a3daae commit c46a6ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vector/_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -2716,15 +2716,15 @@ 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 c46a6ca

Please sign in to comment.