We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f5cb5 commit 7b71f5bCopy full SHA for 7b71f5b
StainedGlass/svg.py
@@ -17,7 +17,7 @@
17
class SVG:
18
def __init__(self, width: int, height: int, background_color: tuple[int, int, int]):
19
self.content = '<?xml version="1.0" encoding="utf-8"?>\n' \
20
- f'<svg version="1.1" baseProfile="full" width="{width}" ' \
+ f'<svg version="1.1" baseProfile="full" width="{width}" ' \
21
f'height="{height}" xmlns="http://www.w3.org/2000/svg">\n' \
22
f'<rect width="100%" height="100%" fill="rgb{background_color}" />'
23
0 commit comments