Skip to content

Commit

Permalink
Fix: SVG.to_string: unique_ids must not be True by default
Browse files Browse the repository at this point in the history
  • Loading branch information
opcode81 committed Jun 26, 2024
1 parent 1b466c8 commit 410aaee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/penai/svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 410aaee

Please sign in to comment.