diff --git a/pep-0677.rst b/pep-0677.rst index d1149e29211..2e182176477 100644 --- a/pep-0677.rst +++ b/pep-0677.rst @@ -107,7 +107,10 @@ type checkers to find the bug. With our proposal, the example looks like this:: - def flat_map(l: list[int], func: (int) -> list[int]) -> list[int]: + def flat_map( + l: list[int], + func: (int) -> list[int], + ) -> list[int]: out = [] for element in l: out.extend(f(element))