mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
13 lines
165 B
Python
13 lines
165 B
Python
from typing import overload
|
|
|
|
|
|
@overload
|
|
def foo(value: str) -> None:
|
|
pass
|
|
|
|
@overload
|
|
def foo(value: int) -> str:
|
|
pass
|
|
|
|
def foo<caret>(value):
|
|
return None |