From 3c8502c381dc18cadfa36f9db4603915bd8c311f Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sat, 13 Mar 2021 20:22:18 +1300 Subject: Remove unneeded `pass`es from Python script These were accidentally left in from debug/commented out code --- ui_remote.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui_remote.py b/ui_remote.py index e2cb584..c4f5c99 100755 --- a/ui_remote.py +++ b/ui_remote.py @@ -61,16 +61,12 @@ def main(): running = False elif key == ord('w'): interrupt_run_continue(mi, 'call up()') - pass elif key == ord('s'): interrupt_run_continue(mi, 'call down()') - pass elif key == ord('a'): interrupt_run_continue(mi, 'call hold()') - pass elif key == ord('d'): interrupt_run_continue(mi, 'call press()') - pass else: stdscr.addstr(1, 0, str(key)) -- cgit v1.1