File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/firefighter/incidents/tasks Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -531,6 +531,7 @@ ignore = [
531531 " FIX003" , # XXX: Enable later - Too many X*X
532532 " FIX002" , # XXX: Enable later - Too many T0D0s
533533 " RUF012" , # XXX Enable later - Mutable class attributes should be annotated with `typing.ClassVar`
534+ " RUF067" , # __init__ module should only contain docstrings and re-exports
534535 " CPY001" , # Missing copyright notice at top of file
535536 " PLR6301" , # XXX Method could be a function or static method -- needs allow list or @override support
536537 " E203" , # XXX whitespace-before-punctuation -- still unstable with black formatting
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def update_oncall() -> None:
3434 fetch_oncalls .s () # pyright: ignore[reportUnboundVariable]
3535 | update_oncall_views .s ()
3636 )
37- chain ()
37+ chain . apply_async ()
3838
3939
4040@shared_task (name = "incidents.update_oncall_views" )
You can’t perform that action at this time.
0 commit comments