From 410aaee491bcb03b44c8a03241de72dc5b7f272f Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Wed, 26 Jun 2024 17:51:10 +0200 Subject: [PATCH] Fix: SVG.to_string: unique_ids must not be True by default --- src/penai/svg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/penai/svg.py b/src/penai/svg.py index f480423..b515767 100644 --- a/src/penai/svg.py +++ b/src/penai/svg.py @@ -355,7 +355,7 @@ def to_string( self, pretty: bool = True, replace_ids_by_short_ids: bool = False, - unique_ids: bool = True, + unique_ids: bool = False, add_width_height: bool = False, scale_to_width: int | None = None, ) -> str: