Skip to content

Commit

Permalink
Fixed linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DDH13 committed Dec 8, 2024
1 parent 761bc1c commit be0a7fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tabbycat/checkins/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
from actionlog.mixins import LogActionMixin
from actionlog.models import ActionLogEntry
from options.utils import use_team_code_names
from participants.models import Person, Speaker
from breakqual.models import BreakingTeam
from participants.models import Person, Speaker
from participants.serializers import InstitutionSerializer
from tournaments.mixins import PublicTournamentPageMixin, TournamentMixin
from users.permissions import Permission
Expand Down Expand Up @@ -74,7 +74,7 @@ def get_context_data(self, **kwargs):
if self.tournament.current_round in break_rounds:
is_break_round = True
if is_break_round:
breaking_teams = BreakingTeam.objects.filter( break_category__tournament=self.tournament).select_related('team', 'team__institution', 'break_category', 'break_category__tournament').all()
breaking_teams = BreakingTeam.objects.filter(break_category__tournament=self.tournament).select_related('team', 'team__institution', 'break_category', 'break_category__tournament').all()
breaking_team_ids = set(breaking_team.team.id for breaking_team in breaking_teams)

team_codes = use_team_code_names(self.tournament, admin=self.for_admin, user=self.request.user)
Expand Down

0 comments on commit be0a7fd

Please sign in to comment.