fixed typo from enable to disable in disable_progress_bar function (#16406)

This commit is contained in:
Atharva Ingle 2022-03-25 18:37:43 +05:30 committed by GitHub
parent 088c1880b7
commit 7e7490473e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -339,6 +339,6 @@ def enable_progress_bar():
def disable_progress_bar():
"""Enable tqdm progress bar."""
"""Disable tqdm progress bar."""
global _tqdm_active
_tqdm_active = False