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 f827bc2 commit c4b29faCopy full SHA for c4b29fa
weblate_web/crm/views.py
@@ -366,7 +366,7 @@ def get_title(self) -> str:
366
return f"Income Tracking - {year}/{month:02d}"
367
return f"Income Tracking - {year}"
368
369
- def generate_svg_pie_chart(self, data: dict[InvoiceCategory, Decimal]) -> str:
+ def generate_svg_pie_chart(self, data: dict[InvoiceCategory, Decimal]) -> str: # noqa: PLR0914
370
"""Generate a simple SVG pie chart for category distribution with legend."""
371
if not data or sum(data.values()) == 0:
372
return ""
0 commit comments