Make module runnable with python -m lama_cleaner

This commit is contained in:
Jonas Tingeborn 2023-12-27 10:05:06 +01:00
parent af00512cf7
commit c39662900f

4
lama_cleaner/__main__.py Normal file
View File

@ -0,0 +1,4 @@
from lama_cleaner import entry_point
if __name__ == "__main__":
entry_point()