aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2021-03-13 20:22:18 +1300
committerDavid Phillips <david@yeah.nah.nz>2021-03-13 20:22:18 +1300
commit3c8502c381dc18cadfa36f9db4603915bd8c311f (patch)
tree2bc8c7955a28399b3b4b0120f4e2fcc605e7e3a8
parentd9527ea3c5ab6f1e0776b86ecc43459eb1a706b2 (diff)
downloadaltimeter-3c8502c381dc18cadfa36f9db4603915bd8c311f.tar.xz
Remove unneeded `pass`es from Python script
These were accidentally left in from debug/commented out code
-rwxr-xr-xui_remote.py4
1 files changed, 0 insertions, 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))