fix(style): code style
This commit is contained in:
@@ -10,7 +10,7 @@ from contest.models import ContestRuleType
|
||||
class ProblemTagAPI(APIView):
|
||||
def get(self, request):
|
||||
qs = ProblemTag.objects
|
||||
keyword = request.GET.get('keyword')
|
||||
keyword = request.GET.get("keyword")
|
||||
if keyword:
|
||||
qs = ProblemTag.objects.filter(name__icontains=keyword)
|
||||
tags = qs.annotate(problem_count=Count("problem")).filter(problem_count__gt=0)
|
||||
|
||||
Reference in New Issue
Block a user