Skip to content

Commit c4b29fa

Browse files
authored
Apply suggestion from @nijel
1 parent f827bc2 commit c4b29fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

weblate_web/crm/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ def get_title(self) -> str:
366366
return f"Income Tracking - {year}/{month:02d}"
367367
return f"Income Tracking - {year}"
368368

369-
def generate_svg_pie_chart(self, data: dict[InvoiceCategory, Decimal]) -> str:
369+
def generate_svg_pie_chart(self, data: dict[InvoiceCategory, Decimal]) -> str: # noqa: PLR0914
370370
"""Generate a simple SVG pie chart for category distribution with legend."""
371371
if not data or sum(data.values()) == 0:
372372
return ""

0 commit comments

Comments
 (0)