From 0e6babea674660ce920e3c29d36ab3c377351a5f Mon Sep 17 00:00:00 2001 From: Qing Date: Mon, 8 Jan 2024 22:45:00 +0800 Subject: [PATCH] add __main__.py https://github.com/Sanster/lama-cleaner/pull/416 --- iopaint/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 iopaint/__main__.py diff --git a/iopaint/__main__.py b/iopaint/__main__.py new file mode 100644 index 0000000..3b76d32 --- /dev/null +++ b/iopaint/__main__.py @@ -0,0 +1,4 @@ +from iopaint import entry_point + +if __name__ == "__main__": + entry_point()