From c741940bce68ca0a8f812c12e7d0fb7710088c9d Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Wed, 3 Feb 2021 11:35:04 -0500 Subject: [PATCH] Switch bin lightcards to python from POSIX --- bin/lightcards | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/lightcards b/bin/lightcards index 10a1657..fec8f88 100755 --- a/bin/lightcards +++ b/bin/lightcards @@ -1,2 +1,5 @@ -#!/usr/bin/env sh -python3 -m lightcards ${@} +#!/usr/bin/env python + +import lightcards + +lightcards.lightcards.main() -- 2.39.2