remove empty d error (#2818)

pull/2853/head
Kaalleen 2024-04-06 08:26:14 +02:00 zatwierdzone przez GitHub
rodzic cbdb5129f7
commit 36ab53301d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 0 dodań i 3 usunięć

Wyświetl plik

@ -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