Fixed formatting

pull/199/head
Ashley Whetter 5 years ago
parent fc1d78f758
commit 3747596021

@ -15,7 +15,9 @@ def f_comment(a, b, /, c, d, *, e, f):
print(a, b, c, d, e, f)
def f_annotation(a: int, b: int, /, c: Optional[int], d: Optional[int], *, e: float, f: float) -> None:
def f_annotation(
a: int, b: int, /, c: Optional[int], d: Optional[int], *, e: float, f: float
) -> None:
print(a, b, c, d, e, f)

Loading…
Cancel
Save