mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 7682eff8c8ca8ae8241ddee3191add34ab2ac22e
6 lines
110 B
Python
6 lines
110 B
Python
from typing_extensions import deprecated
|
|
|
|
|
|
@deprecated("deprecated method")
|
|
def my_method(x: int) -> int: ...
|