Skip to content

Commit ae993ee

Browse files
committed
💡 fix misplaced comment
1 parent 967a789 commit ae993ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/numpy-stubs/polynomial/_polybase.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ class ABCPolyBase(abc.ABC):
5858
) -> None: ...
5959

6060
#
61-
@overload # workaround for microsoft/pyright#10232
62-
def __call__(self, /, arg: _PolyT) -> _PolyT: ...
6361
@overload
62+
def __call__(self, /, arg: _PolyT) -> _PolyT: ...
63+
@overload # workaround for microsoft/pyright#10232
6464
def __call__(self, /, arg: _nt._ToArray_nnd[_nt.co_complex]) -> _nt.Array[_nt.inexact64]: ...
6565
@overload
6666
def __call__(self, /, arg: _nt.CoComplex_0d) -> _nt.inexact64: ...

0 commit comments

Comments
 (0)