From 6aa35253ab528880c70be11ec430995cb3b2d071 Mon Sep 17 00:00:00 2001 From: Diego Saavedra Date: Wed, 14 Jun 2023 08:01:28 -0500 Subject: [PATCH] incorporacion if __name__ == "__app__": --- app.py | 3 ++- requirements.txt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 05f5825..995b27e 100644 --- a/app.py +++ b/app.py @@ -1,3 +1,4 @@ from game import Game -Game().loop() \ No newline at end of file +if __name__ == "__app__": + Game().loop() \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index ef0578a..7672810 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -mediapipe==0.8.10.1 +mediapipe==0.10.1 opencv_python==4.5.5.64 pygame==2.1.2