(
a_really_long_parameter: int,
and_another_long_one: bool = False,
let_us_make_sure_this_is_looong: Optional[str] = None,
)
| 411 | from typing import Optional |
| 412 | |
| 413 | def long_function( |
| 414 | a_really_long_parameter: int, |
| 415 | and_another_long_one: bool = False, |
| 416 | let_us_make_sure_this_is_looong: Optional[str] = None, |
| 417 | ) -> bool: pass |
| 418 | |
| 419 | sig = oinspect._render_signature( |
| 420 | signature(long_function), |
nothing calls this directly
no outgoing calls
no test coverage detected