Skip to content

Commit

Permalink
Disable progressbar for now
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Sep 17, 2024
1 parent 67212d7 commit 599a9e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r2ai/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def wrapper(*args, **kwargs):
sig, *args, **kwargs)
is_infinite = infinite or not has_total

if server_running() and not server_in_background():
return func(*args, **kwargs)
# if server_running() and not server_in_background():
return func(*args, **kwargs)

with Progress(SpinnerColumn(), *Progress.get_default_columns(), console=Console(no_color=not bool(color)), transient=False) as p:
task_text = f"[{color}]{text}" if color else text
Expand Down

0 comments on commit 599a9e7

Please sign in to comment.