From c0d54db2a00aabf3e2e83fb23a1229f9468ed772 Mon Sep 17 00:00:00 2001 From: dj4t9n Date: Sat, 22 May 2021 17:29:01 +0530 Subject: [PATCH] not False --> True --- bpytop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bpytop.py b/bpytop.py index 2ebf9fa..35a4ed1 100755 --- a/bpytop.py +++ b/bpytop.py @@ -5533,7 +5533,7 @@ def main(): #? Switch to alternate screen, clear screen, hide cursor, enable mouse reporting and disable input echo Draw.now(Term.alt_screen, Term.clear, Term.hide_cursor, Term.mouse_on, Term.title("BpyTOP")) Term.echo(False) - #Term.refresh(force=True) + Term.refresh(force=True) #? Start a thread checking for updates while running init if CONFIG.update_check: UpdateChecker.run() @@ -5630,7 +5630,7 @@ def main(): #? Main loop -------------------------------------------------------------------------------------> def run(): - while not False: + while True: Term.refresh() Timer.stamp()