Skip to content

Commit

Permalink
🔥 Remove workaround for an old Textual bug
Browse files Browse the repository at this point in the history
Removes workaround for Textualize/textual#3714

Fixes #2
  • Loading branch information
davep committed Nov 23, 2024
1 parent db6bc6d commit 3717ce2
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/quizzical/app/widgets/quiz_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ class QuizList(OptionList):
quizzes: var[list[QuizParameters]] = var(list, always_update=True, init=False)
"""The list of all the quiz parameters."""

def clear_options(self) -> Self:
"""Workaround for https://github.com/Textualize/textual/issues/3714"""
super().clear_options()
self._clear_content_tracking()
return self

@dataclass
class Changed(Message):
"""Message sent when the quiz list has been changed."""
Expand Down

0 comments on commit 3717ce2

Please sign in to comment.