From 83c6713cba3fe7a69c58912365d0c90e65150d31 Mon Sep 17 00:00:00 2001 From: Ashish Bastola <41137160+abastola0@users.noreply.github.com> Date: Wed, 6 Dec 2023 11:31:35 -0500 Subject: [PATCH] fix: keyerror 'SQAURE' when using stroke_cap(SQUARE) (#459) --- p5/core/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p5/core/constants.py b/p5/core/constants.py index ddf139ca..59645a5b 100644 --- a/p5/core/constants.py +++ b/p5/core/constants.py @@ -228,7 +228,7 @@ class SType(Enum): TESS = SType.TESS # Stroke parameters -SQUARE = "SQAURE" +SQUARE = "SQUARE" PROJECT = "PROJECT" ROUND = "ROUND" MITER = "MITER"