From 73b61c0cabba77e00c8c1718aaf3538de1420d96 Mon Sep 17 00:00:00 2001 From: Matthew McWilliams Date: Wed, 9 Nov 2022 09:45:07 -0500 Subject: [PATCH] Fix appendStr -> append --- fourcell/analyze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fourcell/analyze.py b/fourcell/analyze.py index 66cebd1..306f07c 100644 --- a/fourcell/analyze.py +++ b/fourcell/analyze.py @@ -94,7 +94,7 @@ while count < 6 : strC = f'{cX},{cY}' if strC in centersStr : continue - centers.appendStr(strC) + centersStr.append(strC) corners.append((cX, cY)) print(f'{cX},{cY}') cv2.circle(img, (cX, cY), 40, (255, 0, 0), -1)