From 36ab53301d06ed082a9e0b7a94eecec00454eef7 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sat, 6 Apr 2024 08:26:14 +0200 Subject: [PATCH] remove empty d error (#2818) --- lib/elements/element.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/elements/element.py b/lib/elements/element.py index 4ea909ac7..c9d7c377d 100644 --- a/lib/elements/element.py +++ b/lib/elements/element.py @@ -415,9 +415,6 @@ class EmbroideryElement(object): else: d = self.node.get("d", "") - if not d: - self.fatal(_("Object %(id)s has an empty 'd' attribute. Please delete this object from your document.") % dict(id=self.node.get("id"))) - return inkex.Path(d).to_superpath() @cache