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