mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
7 lines
218 B
Python
7 lines
218 B
Python
def foo_decl(long_param1: Dict[str, Any],
|
|
long_param2: List[str],
|
|
long_param3: List[float],
|
|
long_kwarg1: str = "with value",
|
|
long_kwarg2: int = 42) -> bool:
|
|
pass
|