Skip to content

Commit

Permalink
remove space
Browse files Browse the repository at this point in the history
  • Loading branch information
davecom committed Jun 4, 2024
1 parent 01f5cb5 commit 7b71f5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StainedGlass/svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class SVG:
def __init__(self, width: int, height: int, background_color: tuple[int, int, int]):
self.content = '<?xml version="1.0" encoding="utf-8"?>\n' \
f'<svg version="1.1" baseProfile="full" width="{width}" ' \
f'<svg version="1.1" baseProfile="full" width="{width}" ' \
f'height="{height}" xmlns="http://www.w3.org/2000/svg">\n' \
f'<rect width="100%" height="100%" fill="rgb{background_color}" />'

Expand Down

0 comments on commit 7b71f5b

Please sign in to comment.