Skip to content

Commit

Permalink
Merge carlinmack:patch-1 into devel
Browse files Browse the repository at this point in the history
- closes tqdm#890
  • Loading branch information
casperdcl committed Feb 16, 2020
2 parents e056d67 + e99cf43 commit 3541cd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .meta/.readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ Nested progress bars
for i in trange(4, desc='1st loop'):
for j in trange(5, desc='2nd loop'):
for k in trange(50, desc='3nd loop', leave=False):
for k in trange(50, desc='3rd loop', leave=False):
sleep(0.01)
On Windows `colorama <https://github.com/tartley/colorama>`__ will be used if
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ Nested progress bars
for i in trange(4, desc='1st loop'):
for j in trange(5, desc='2nd loop'):
for k in trange(50, desc='3nd loop', leave=False):
for k in trange(50, desc='3rd loop', leave=False):
sleep(0.01)
On Windows `colorama <https://github.com/tartley/colorama>`__ will be used if
Expand Down

0 comments on commit 3541cd5

Please sign in to comment.