Skip to content

Commit

Permalink
Merge pull request #547 from llazzaro/fix-pipeline
Browse files Browse the repository at this point in the history
fix lint errors
  • Loading branch information
llazzaro committed Jan 29, 2023
2 parents 3963988 + 9c47d8e commit 5d92415
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schedule/models/events.py
Expand Up @@ -637,7 +637,7 @@ def get_absolute_url(self):
if self.pk is not None:
return reverse(
"occurrence",
kwargs={"occurrence_id": self.pk, "event_id": self.event_id}
kwargs={"occurrence_id": self.pk, "event_id": self.event_id},
)
return reverse(
"occurrence_by_date",
Expand All @@ -656,7 +656,7 @@ def get_cancel_url(self):
if self.pk is not None:
return reverse(
"cancel_occurrence",
kwargs={"occurrence_id": self.pk, "event_id": self.event_id}
kwargs={"occurrence_id": self.pk, "event_id": self.event_id},
)
return reverse(
"cancel_occurrence_by_date",
Expand All @@ -675,7 +675,7 @@ def get_edit_url(self):
if self.pk is not None:
return reverse(
"edit_occurrence",
kwargs={"occurrence_id": self.pk, "event_id": self.event_id}
kwargs={"occurrence_id": self.pk, "event_id": self.event_id},
)
return reverse(
"edit_occurrence_by_date",
Expand Down

0 comments on commit 5d92415

Please sign in to comment.