Skip to content

Commit 707c8b3

Browse files
committed
formatting
1 parent 9c9e1fd commit 707c8b3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Lib/_pyrepl/commands.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,9 @@ def do(self) -> None:
533533
if not editor:
534534
editor = "vi" if os.name != "nt" else "notepad"
535535

536-
with tempfile.NamedTemporaryFile(mode="w+", suffix=".py", delete=False, encoding="utf-8") as f:
536+
with tempfile.NamedTemporaryFile(
537+
mode="w+", suffix=".py", delete=False, encoding="utf-8"
538+
) as f:
537539
tmp_path = Path(f.name)
538540
f.write("".join(r.buffer))
539541
f.flush()

0 commit comments

Comments
 (0)