Files
jedi/test/examples/typing_overload/file.pyi
2019-12-07 00:30:37 +01:00

9 lines
148 B
Python

from typing import overload
@overload
def with_overload(x: int, y: int) -> float: ...
@overload
def with_overload(x: str, y: list) -> float: ...