]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/lightcards.py
Add menu at end of stack
[lightcards.git] / lightcards / lightcards.py
index 23f94df29f34f04eb2251c7b47c31f7dcec5cd25..775b13d24afaea722dc63296ef995e366a16c794 100755 (executable)
@@ -6,6 +6,7 @@ import argparse
 from curses import wrapper
 
 from . import display, parse
+from .deck import Status
 
 
 def parse_args():
@@ -21,7 +22,8 @@ def parse_args():
 
 
 def show(stack, headers):
-    wrapper(display.get_key, stack, headers)
+    idx = Status()
+    wrapper(display.get_key, stack, headers, idx)
 
 
 def main():