Skip to content

Commit 29da92e

Browse files
committed
PEP 8
1 parent 59bedbd commit 29da92e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/test/test_code.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -905,9 +905,9 @@ def get_line_branches(func):
905905
base = code.co_firstlineno
906906
return [
907907
(
908-
code_offset_to_line(code, src)-base,
909-
code_offset_to_line(code, left)-base,
910-
code_offset_to_line(code, right)-base
908+
code_offset_to_line(code, src) - base,
909+
code_offset_to_line(code, left) - base,
910+
code_offset_to_line(code, right) - base
911911
) for (src, left, right) in
912912
code.co_branches()
913913
]

0 commit comments

Comments
 (0)