From 2935185b8151ba15d0e3fcf5d3ddf4c649d24c29 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Fri, 2 Jun 2023 19:58:47 +0200 Subject: [PATCH] Fix multiple ui opening --- run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run.py b/run.py index 3eaca30..b52e5cc 100755 --- a/run.py +++ b/run.py @@ -2,4 +2,5 @@ from roop import core -core.run() \ No newline at end of file +if __name__ == '__main__': + core.run()