removed commands

This commit is contained in:
Egor Matveev 2021-11-07 10:19:55 +03:00
parent 5eab674222
commit e259d2d146
2 changed files with 0 additions and 23 deletions

View File

@ -1,15 +0,0 @@
from django.core.management.base import BaseCommand
from Main.models import Solution
from SprintLib.testers import *
class Command(BaseCommand):
help = 'Tests solution'
def add_arguments(self, parser):
parser.add_argument('solution_id', type=int)
def handle(self, *args, **options):
solution = Solution.objects.get(id=options['solution_id'])
eval(solution.language.work_name + 'Tester')(solution).execute()

View File

@ -1,8 +0,0 @@
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = 'Updates languages'
def handle(self, *args, **options):
pass