Merge pull request #1398 from casperdcl/tqdm-fixes

progress fixes
This commit is contained in:
Grant Sanderson 2021-02-23 12:00:31 -08:00 committed by GitHub
commit 9d1c8df095
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -272,7 +272,7 @@ class Scene(object):
times,
total=n_iterations,
leave=self.leave_progress_bars,
ascii=False if platform.system() != 'Windows' else True
ascii=True if platform.system() == 'Windows' else None
)
return time_progression

View file

@ -2,7 +2,6 @@ argparse
colour
numpy
Pillow
progressbar
scipy
sympy
tqdm