silly deletion

This commit is contained in:
Casper da Costa-Luis 2019-12-01 00:08:42 +00:00
parent 6a72c889cd
commit 5e4094e383
No known key found for this signature in database
GPG Key ID: 986B408043AE090D
3 changed files with 0 additions and 9 deletions

View File

@ -821,9 +821,6 @@ A reusable canonical example is given below:
from tqdm.contrib import DummyTqdmFile
def isatty(self):
return getattr(self.file, "isatty", lambda: False)()
@contextlib.contextmanager
def std_out_err_redirect_tqdm():
orig_out_err = sys.stdout, sys.stderr

View File

@ -1003,9 +1003,6 @@ A reusable canonical example is given below:
from tqdm.contrib import DummyTqdmFile
def isatty(self):
return getattr(self.file, "isatty", lambda: False)()
@contextlib.contextmanager
def std_out_err_redirect_tqdm():
orig_out_err = sys.stdout, sys.stderr

View File

@ -17,9 +17,6 @@ import sys
from tqdm import tqdm
from tqdm.contrib import DummyTqdmFile
def isatty(self):
return getattr(self.file, "isatty", lambda: False)()
@contextlib.contextmanager
def std_out_err_redirect_tqdm():