Skip to content

Commit a24ea22

Browse files
committed
chore(backend): remove unused noqa directives
1 parent 900b7d6 commit a24ea22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/timed/notifications/management/commands/notify_reviewers_unverified.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _get_unverified_reports(self, start, end):
8989
"""
9090
return Report.objects.filter(date__range=[start, end], verified_by__isnull=True)
9191

92-
def _notify_reviewers(self, start, end, reports, optional_message, cc): # noqa: PLR0913
92+
def _notify_reviewers(self, start, end, reports, optional_message, cc):
9393
"""Notify reviewers on their unverified reports.
9494
9595
Only the reviewers lowest in the hierarchy should be notified.

backend/timed/reports/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def _generate_workreport_name(self, from_date: date, project: Project) -> str:
302302
"""
303303
return f"{from_date:%y%m}-{date.today():%Y%m%d}-{self._clean_filename(project.customer.name)}-{self._clean_filename(project.name)}.ods"
304304

305-
def _create_workreport( # noqa: PLR0913
305+
def _create_workreport(
306306
self,
307307
from_date: date,
308308
to_date: date,

0 commit comments

Comments
 (0)