Update progress.py: doc: Progress.default_columns -> Progress.get_def… (#3170)

* Update progress.py: doc: Progress.default_columns -> Progress.get_default_columns

Update progress.py: doc: 
Progress.default_columns -> Progress.get_default_columns

* Update CONTRIBUTORS.md

add bwagner (myself) to contributors
This commit is contained in:
Bernhard Wagner 2023-10-27 13:59:40 +02:00 committed by GitHub
parent e9f75c9912
commit 01d01ed5ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -70,4 +70,5 @@ The following people have contributed to the development of Rich:
- [Ke Sun](https://github.com/ksun212)
- [Qiming Xu](https://github.com/xqm32)
- [James Addison](https://github.com/jayaddison)
- [Pierro](https://github.com/xpierroz)
- [Pierro](https://github.com/xpierroz)
- [Bernhard Wagner](https://github.com/bwagner)

View File

@ -1113,7 +1113,7 @@ class Progress(JupyterMixin):
progress = Progress(
SpinnerColumn(),
*Progress.default_columns(),
*Progress.get_default_columns(),
"Elapsed:",
TimeElapsedColumn(),
)