fix indentation

This commit is contained in:
2022-08-28 13:06:51 +02:00
parent ac133b07e4
commit 0bb965336e

View File

@@ -53,33 +53,33 @@ def _linux_install_icon():
def _linux_install_icon_to_path(path: Path): def _linux_install_icon_to_path(path: Path):
svg = textwrap.dedent("""<?xml version="1.0" encoding="UTF-8" standalone="no"?> svg = textwrap.dedent("""<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="64" height="64" viewBox="0 0 128 128" version="1.1" xmlns="http://www.w3.org/2000/svg"> <svg width="64" height="64" viewBox="0 0 128 128" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs> <defs>
<linearGradient id="bg1" x1="0%" y1="100%" x2="100%" y2="0%"> <linearGradient id="bg1" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#9f8700"/> <stop offset="0%" style="stop-color:#9f8700"/>
<stop offset="100%" style="stop-color:#ffdb00"/> <stop offset="100%" style="stop-color:#ffdb00"/>
</linearGradient> </linearGradient>
<linearGradient id="fg1" x1="0%" y1="100%" x2="100%" y2="0%"> <linearGradient id="fg1" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#8caec7"/> <stop offset="0%" style="stop-color:#8caec7"/>
<stop offset="100%" style="stop-color:#6289a3"/> <stop offset="100%" style="stop-color:#6289a3"/>
</linearGradient> </linearGradient>
</defs> </defs>
<rect x="8" y="8" width="112" height="112" style="fill:url(#fg1)" rx="10"/> <rect x="8" y="8" width="112" height="112" style="fill:url(#fg1)" rx="10"/>
<path style="fill:black" <path style="fill:black"
d="M76,113 d="M76,113
L15,113 L15,113
L15,70 L15,70
C15,70 25,55 45,36 C15,70 25,55 45,36
C53,29 60,26 78,32 C53,29 60,26 78,32
C85,34 90,32 90,32 C85,34 90,32 90,32
C95,30 108,35 110,40 C95,30 108,35 110,40
L110,40 L110,40
C83,48 80,60 76,71 C83,48 80,60 76,71
C74,80 76,113 76,113 C74,80 76,113 76,113
z"/> z"/>
<rect x="8" y="8" width="112" height="112" <rect x="8" y="8" width="112" height="112"
style="fill:none; stroke:url(#bg1); stroke-width:14" rx="10"/> style="fill:none; stroke:url(#bg1); stroke-width:14" rx="10"/>
<circle cx="65" cy="40" r="3" fill="white"/> <circle cx="65" cy="40" r="3" fill="white"/>
</svg>""") </svg>""")
path.write_text(svg, "utf8") path.write_text(svg, "utf8")
pass pass