Klowner/inkscape-applytransforms

applytransform.py:60

Closed this issue ยท 3 comments

I recive a error in new version of inskape
applytransform.py:60: DeprecationWarning: inkex.deprecated.main.transform_mul -> Use @ operator instead transf = Transform(transf) * Transform(node.get("transform", None))
What to change?

Looks like Python added a dedicated infix operator for matrix multiplication https://peps.python.org/pep-0465/

So * will need to be replaced with @.

It work. Thanks for solution!