mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
17 lines
171 B
Python
17 lines
171 B
Python
from typing import overload
|
|
|
|
|
|
@overload
|
|
def foo() -> None:
|
|
pass
|
|
|
|
@overload
|
|
def foo() -> str:
|
|
pass
|
|
|
|
@overload
|
|
def foo() -> str:
|
|
pass
|
|
|
|
def foo():
|
|
return None |