mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
16 lines
168 B
Python
16 lines
168 B
Python
from typing import overload
|
|
|
|
|
|
@overload
|
|
def bar(value: str) -> None:
|
|
pass
|
|
|
|
@overload
|
|
def bar(value: int) -> str:
|
|
pass
|
|
|
|
def bar(value):
|
|
return None
|
|
|
|
|
|
bar("") |