fix: correct linters
diff --git a/erpnext/selling/report/sales_analytics/sales_analytics.py b/erpnext/selling/report/sales_analytics/sales_analytics.py
index 2c34c23..605d2fa 100644
--- a/erpnext/selling/report/sales_analytics/sales_analytics.py
+++ b/erpnext/selling/report/sales_analytics/sales_analytics.py
@@ -317,7 +317,9 @@
elif self.filters.range == "Monthly":
period = _(str(self.months[posting_date.month - 1])) + " " + str(posting_date.year)
elif self.filters.range == "Quarterly":
- period = _("Quarter {0} {1}").format(str(((posting_date.month - 1) // 3) + 1), str(posting_date.year))
+ period = _("Quarter {0} {1}").format(
+ str(((posting_date.month - 1) // 3) + 1), str(posting_date.year)
+ )
else:
year = get_fiscal_year(posting_date, company=self.filters.company)
period = str(year[0])