Skip to content

Commit 9db621e

Browse files
hugovkpicnixz
andauthored
Improve readability
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
1 parent 07671f8 commit 9db621e

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

Lib/pickletools.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2582,10 +2582,11 @@ def dis(pickle, out=None, memo=None, indentlevel=4, annotate=0):
25822582

25832583
stack.extend(after)
25842584

2585-
print(
2586-
f"highest protocol among opcodes = {t.proto}{maxproto}{t.reset}",
2587-
file=out,
2588-
)
2585+
print(
2586+
"highest protocol among opcodes =",
2587+
f"{t.proto}{maxproto}{t.reset}",
2588+
file=out,
2589+
)
25892590
if stack:
25902591
raise ValueError("stack not empty after STOP: %r" % stack)
25912592

0 commit comments

Comments
 (0)