Commit 35fa5085 authored by Michal Čihař's avatar Michal Čihař

Remove unused import

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent d78d40b3
...@@ -20,12 +20,12 @@ ...@@ -20,12 +20,12 @@
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
from django.db.models import Count from django.db.models import Count
from optparse import make_option
from weblate.trans.models import Check, get_related_units from weblate.trans.models import Check, get_related_units
class Command(BaseCommand): class Command(BaseCommand):
help = 'lists top not translated failing checks' help = 'lists top not translated failing checks'
def handle(self, *args, **options): def handle(self, *args, **options):
results = Check.objects.filter( results = Check.objects.filter(
check='same' check='same'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment