From b19c15093165e38f72f5d567d07b4940232a1aa4 Mon Sep 17 00:00:00 2001 From: Stefan Sullivan Date: Mon, 26 May 2025 16:12:54 -0700 Subject: [PATCH] Create __main__.py --- qrcode/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 qrcode/__main__.py diff --git a/qrcode/__main__.py b/qrcode/__main__.py new file mode 100644 index 00000000..8026a67f --- /dev/null +++ b/qrcode/__main__.py @@ -0,0 +1,3 @@ +from .console_scripts import main + +main()