Skip to content

Commit b063c31

Browse files
committed
Fix broken type hint
1 parent 94c306c commit b063c31

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

backend/donations/management/commands/check_ngos.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from django.conf import settings
77
from django.core.management import BaseCommand
88
from django.db.models import Q
9-
from django.db.models.query import ValuesQuerySet
109
from django.utils import timezone
1110
from requests.exceptions import ConnectionError, Timeout
1211

@@ -45,7 +44,7 @@ def handle(self, *args, **options):
4544
recent_deadline = ts - timedelta(hours=2)
4645
short_deadline = ts - timedelta(days=30)
4746

48-
qs: ValuesQuerySet = (
47+
qs = (
4948
Ngo.objects.exclude(pause_cult_registry_check=True)
5049
# check only NGOs whose registration number is valid:
5150
.filter(registration_number_valid=True)

0 commit comments

Comments
 (0)