From c39662900fca981b1b272a83d586730d80899569 Mon Sep 17 00:00:00 2001 From: Jonas Tingeborn Date: Wed, 27 Dec 2023 10:05:06 +0100 Subject: [PATCH] Make module runnable with python -m lama_cleaner --- lama_cleaner/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 lama_cleaner/__main__.py diff --git a/lama_cleaner/__main__.py b/lama_cleaner/__main__.py new file mode 100644 index 0000000..f57b35f --- /dev/null +++ b/lama_cleaner/__main__.py @@ -0,0 +1,4 @@ +from lama_cleaner import entry_point + +if __name__ == "__main__": + entry_point()