Fix icat fail on mac with --print-window-size

passing tty as TextIOWrapper to screen_size_function results in a TypeError since the screen_size_function expects an int. calling fileno() on tty gives us the desired int. This also fixes the kitty matplotlib backend, if MPLBACEND_KITTY_SIZING is not set to manual
This commit is contained in:
Mena Jacobs 2022-03-12 02:17:01 +01:00
parent 14e0b01b40
commit c8a258f36b

View File

@ -515,7 +515,12 @@ def main(args: List[str] = sys.argv) -> None:
if cli_opts.print_window_size:
screen_size_function.cache_clear()
with open(os.ctermid()) as tty:
ss = screen_size_function(tty)()
try:
fd = tty.fileno()
except AttributeError:
# use default value for fd if ctermid is not available
fd = None
ss = screen_size_function(fd)()
print(f'{ss.width}x{ss.height}', end='')
raise SystemExit(0)