Fix building colors.

This commit is contained in:
Sergey Vartanov 2022-02-04 21:54:41 +03:00
parent 85477027a2
commit 6f01024533

View file

@ -107,8 +107,8 @@ class Building(Figure):
"""Draw simple building shape.""" """Draw simple building shape."""
path: Path = Path( path: Path = Path(
d=self.get_path(flinger), d=self.get_path(flinger),
stroke=self.stroke, stroke=self.stroke.hex,
fill=self.fill, fill=self.fill.hex,
stroke_linejoin="round", stroke_linejoin="round",
) )
svg.add(path) svg.add(path)