mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +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 |