From 916de1bdb0432322d2557e2cbd13f39c82746979 Mon Sep 17 00:00:00 2001 From: Holly Date: Tue, 9 Mar 2021 06:05:42 +0000 Subject: [PATCH] add the shebang --- mtgcardlookup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mtgcardlookup.py b/mtgcardlookup.py index b7ce12b..b1fbf99 100755 --- a/mtgcardlookup.py +++ b/mtgcardlookup.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import os import shutil import asyncio @@ -160,4 +162,4 @@ async def repeat(interval, func, *args, **kwargs): ) if __name__ == '__main__': - asyncio.run(startup()) \ No newline at end of file + asyncio.run(startup())