6 Commits

Author SHA1 Message Date
Georgios Verigakis
1f658bc627 Merge pull request #111 from snoyes/patch-1
Update README.rst
2024-10-29 10:11:14 +02:00
Scott Noyes
eebaa99c82 Update README.rst
Fix spelling error
2024-10-28 07:56:43 -05:00
Georgios Verigakis
52de04b95d Merge pull request #108 from tobek/patch-1
Fix typo in test_progress.py
2023-05-10 08:35:51 +02:00
Toby Fox
bdce3afb5e Fix typo in test_progress.py 2023-05-09 21:49:28 +01:00
Georgios Verigakis
0a5fc077b2 Merge pull request #99 from VSS-DEV/test-install
Update setup.py
2021-11-15 10:09:14 +02:00
VSS-DEV
3beeeb7716 Update setup.py 2021-11-14 15:33:43 +03:00
3 changed files with 4 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ eta avg * remaining
eta_td eta as a timedelta (useful for printing as a string)
========== ================================
Instead of passing all configuration options on instatiation, you can create
Instead of passing all configuration options on instantiation, you can create
your custom subclass:
.. code-block:: python

View File

@@ -25,5 +25,7 @@ setup(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)

View File

@@ -33,7 +33,7 @@ for bar_cls in (IncrementalBar, PixelBar, ShadyBar):
bar.next()
sleep()
bar = IncrementalBar(bold('Corolored'), color='green')
bar = IncrementalBar(bold('Colored'), color='green')
for i in bar.iter(range(200)):
sleep()