]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/runner.py
Change flip cards option to a view
[lightcards.git] / lightcards / runner.py
index f9f1abd9437d5f430bd7e6da721fc0562beb2b76..a0c8a094c02374abc5d3650e76cfd9921445e033 100644 (file)
@@ -25,9 +25,6 @@ def parse_args():
         action="store_true",
         help="alphabetize card order",
     )
-    parser.add_argument(
-        "-f", "--flip", action="store_true", help="show second column first"
-    )
     parser.add_argument(
         "-p",
         "--purge",
@@ -71,10 +68,6 @@ def show(args, stack, headers):
         stack.sort(key=lambda x: x.front)
     if args.reverse:
         stack.reverse()
-    if args.flip:
-        for x in stack:
-            x[0], x[1] = x[1], x[0]
-        headers[0], headers[1] = headers[1], headers[0]
 
     # Send to display
     win = Display(stack, headers, idx)