From f8e347c9978909caddcaea173cf4f20416675f76 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Mon, 11 May 2020 19:00:25 -0700 Subject: [PATCH] fix scale -> scale_by --- masque/pattern.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/pattern.py b/masque/pattern.py index 1849946..2c6fd96 100644 --- a/masque/pattern.py +++ b/masque/pattern.py @@ -549,7 +549,7 @@ class Pattern: self """ for entry in self.shapes + self.subpatterns: - entry.scale(c) + entry.scale_by(c) return self def scale_by(self, c: float) -> 'Pattern':