Skip to content

Commit

Permalink
Merge pull request #1637 from dmach/meter-fix-use_pb_fallback
Browse files Browse the repository at this point in the history
Fix meter by setting default of use_pb_fallback to False
  • Loading branch information
dmach authored Oct 9, 2024
2 parents 1fc5813 + 4252339 commit 8f10569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osc/meter.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def end(self):
def create_text_meter(*args, **kwargs) -> TextMeterBase:
from .conf import config

use_pb_fallback = kwargs.pop("use_pb_fallback", True)
use_pb_fallback = kwargs.pop("use_pb_fallback", False)

meter_class: TextMeterBase
if config.quiet:
Expand Down

0 comments on commit 8f10569

Please sign in to comment.