You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is in the family of def(foo=[]) type issues. Since you have file=sys.stderr in your init, I cannot change sys.stderr after importing tqdm and expect it to work correctly.
file=None followed by: file = file or sys.stderr would be preferable.