Skip to content

Commit 4ff7ba8

Browse files
committed
Temporarily remove type ignore
1 parent a3ad207 commit 4ff7ba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_tasks/backends/database/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class Meta:
113113
if django.VERSION >= (5, 1):
114114
constraints = [
115115
CheckConstraint(
116-
condition=Q(priority__range=(MIN_PRIORITY, MAX_PRIORITY)), # type: ignore
116+
condition=Q(priority__range=(MIN_PRIORITY, MAX_PRIORITY)),
117117
name="priority_range",
118118
)
119119
]

0 commit comments

Comments
 (0)