Skip to content

Commit 7b71f5b

Browse files
committed
remove space
1 parent 01f5cb5 commit 7b71f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

StainedGlass/svg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class SVG:
1818
def __init__(self, width: int, height: int, background_color: tuple[int, int, int]):
1919
self.content = '<?xml version="1.0" encoding="utf-8"?>\n' \
20-
f'<svg version="1.1" baseProfile="full" width="{width}" ' \
20+
f'<svg version="1.1" baseProfile="full" width="{width}" ' \
2121
f'height="{height}" xmlns="http://www.w3.org/2000/svg">\n' \
2222
f'<rect width="100%" height="100%" fill="rgb{background_color}" />'
2323

0 commit comments

Comments
 (0)