From 138f6504e767b906ef263f483c6a7d355bc2dc48 Mon Sep 17 00:00:00 2001 From: jaseg Date: Tue, 11 Apr 2023 00:52:07 +0200 Subject: Fix failing tests --- gerbonara/graphic_primitives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gerbonara/graphic_primitives.py') diff --git a/gerbonara/graphic_primitives.py b/gerbonara/graphic_primitives.py index 13854e1..ca3783f 100644 --- a/gerbonara/graphic_primitives.py +++ b/gerbonara/graphic_primitives.py @@ -275,5 +275,5 @@ class Rectangle(GraphicPrimitive): color = fg if self.polarity_dark else bg x, y = self.x - self.w/2, self.y - self.h/2 return tag('rect', x=prec(x), y=prec(y), width=prec(self.w), height=prec(self.h), - *svg_rotation(self.rotation, self.x, self.y), fill=color) + **svg_rotation(self.rotation, self.x, self.y), fill=color) -- cgit