Skip to content

Commit 55fcec3

Browse files
committed
Remove implementation check for backend checks
Backends always implement check
1 parent 06fcca4 commit 55fcec3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

django_tasks/checks.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,4 @@ def check_tasks(
1212
"""Checks all registered task backends."""
1313

1414
for backend in tasks.all():
15-
try:
16-
yield from backend.check()
17-
except NotImplementedError:
18-
pass
15+
yield from backend.check()

0 commit comments

Comments
 (0)