mirror of https://github.com/tqdm/tqdm.git
silly deletion
This commit is contained in:
parent
6a72c889cd
commit
5e4094e383
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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():
|
||||
|
|
Loading…
Reference in New Issue