summaryrefslogtreecommitdiff
path: root/tests/input/similar_empty_func_2.py
blob: 40c6479fa23b933eeec39be29f5fb94840cbded1 (plain)
1
2
3
4
5
6
7
def func2(
    arg1: int = 1,
    arg2: str = "2",
    arg3: int = 3,
    arg4: bool = True,
) -> None:
    """Valid function definition with docstring only."""