Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 committed Sep 28, 2023
1 parent 7bdfdc1 commit 2cbb80a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/dispatch/feedback/service/scheduled.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@ def find_expired_reminders_and_send(*, db_session: SessionLocal, project: Projec


def find_schedule_and_send(
*, db_session: SessionLocal, project: Project, oncall_plugin: PluginInstance, schedule_id: str, hour: int,
*,
db_session: SessionLocal,
project: Project,
oncall_plugin: PluginInstance,
schedule_id: str,
hour: int,
):
"""
Given PagerDuty schedule_id, determine if the shift ended for the previous oncall person and
Expand Down
2 changes: 1 addition & 1 deletion src/dispatch/feedback/service/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from dispatch.database.service import search_filter_sort_paginate, CommonParameters

from .models import (ServiceFeedbackPagination)
from .models import ServiceFeedbackPagination


router = APIRouter()
Expand Down

0 comments on commit 2cbb80a

Please sign in to comment.