mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
9 lines
208 B
Python
9 lines
208 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
|