Skip to content

Commit b720bd0

Browse files
committed
Fix GH web editor's weird line endings
1 parent 2d232cd commit b720bd0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Lib/pickletools.py

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

25832583
stack.extend(after)
25842584

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

0 commit comments

Comments
 (0)