(
a: Annotated[int, "First number to add"],
b: Annotated[int, "Second number to add"],
)
| 525 | """Test that Annotated metadata populates parameter descriptions when docstrings are ignored.""" |
| 526 | |
| 527 | def add( |
| 528 | a: Annotated[int, "First number to add"], |
| 529 | b: Annotated[int, "Second number to add"], |
| 530 | ) -> int: |
| 531 | return a + b |
| 532 | |
| 533 | fs = function_schema(add, use_docstring_info=False) |
| 534 |
nothing calls this directly
no outgoing calls
no test coverage detected