From 8bb25650d112238b8f465d771fbe2f2b31eb80c6 Mon Sep 17 00:00:00 2001 From: rendies Date: Thu, 12 Jan 2023 19:29:27 +0700 Subject: [PATCH] fix: fix typo --- RunCounting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RunCounting.py b/RunCounting.py index d6a85ee..b46610c 100644 --- a/RunCounting.py +++ b/RunCounting.py @@ -398,7 +398,7 @@ if __name__ == '__main__': help="ephemeral port number of the server (1024 to 65535)") args = vars(ap.parse_args()) # start a thread that will perform motion detection - t = threading.Thread(target=run)) + t = threading.Thread(target=run) t.daemon = True t.start() # start the flask app