From 8c1ad7b93b10e0a8aba70e1eb6bbfd7c61395eac 2020-09-22 04:30:54 From: Inception95 Date: 2020-09-22 04:30:54 Subject: [PATCH] run darker --- diff --git a/IPython/core/page.py b/IPython/core/page.py index 3db9c60..4490325 100644 --- a/IPython/core/page.py +++ b/IPython/core/page.py @@ -199,7 +199,7 @@ def pager_page(strng, start=0, screen_lines=0, pager_cmd=None): tmppath = Path(tmpname) try: os.close(fd) - with tmppath.open('wt') as tmpfile: + with tmppath.open("wt") as tmpfile: tmpfile.write(strng) cmd = "%s < %s" % (pager_cmd, tmppath) # tmpfile needs to be closed for windows