voxel51 / eta

ETA: Extensible Toolkit for Analytics
https://voxel51.com
Apache License 2.0
29 stars 13 forks source link

don't raise on EOPNOTSUPP #589

Closed sashankaryal closed 1 year ago

sashankaryal commented 1 year ago

get_terminal_size() was failing because os.get_terminal_size() was raising EOPNOTSUPP when code was being executed in a different process spawned by node and stdout was piped through sockets. This PR adds this error code to the list of acceptable errors for which (80, 24) is returned.