We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Broken since Textualize/textual#1940 / Textualize/textual@373fc95
Because of super call here:
super
textual-select/textual_select/_select.py
Lines 331 to 335 in 8afe9ef
╭───────────────────────────────── Traceback (most recent call last) ─────────────────────────────────╮│· │ /home/dave/.pyenv/versions/ng/lib/python3.10/site-packages/textual_select/_select.py:329 in ││· │ watch_value ││· │ ││· │ 326 │ │ │ self.text = "" ││· │ 327 │ │ │ self.select_list.list_view.index = 0 ││· │ 328 │ │ │ self.refresh(layout=True) ││· │ ❱ 329 │ │ await self.post_message(self.Changed(self, value)) ││· │ 330 │ ││· │ 331 │ class Changed(Message, bubble=True): ││· │ 332 │ │ """Value was changed.""" ││· │ ││· │ ╭────────────────── locals ──────────────────╮ ││· │ │ self = Select(pseudo_classes={'enabled'}) │ ││· │ │ value = 1 │ ││· │ ╰────────────────────────────────────────────╯ ││· │ ││· │ /home/dave/.pyenv/versions/ng/lib/python3.10/site-packages/textual_select/_select.py:335 in ││· │ __init__ ││· │ ││· │ 332 │ │ """Value was changed.""" ││· │ 333 │ │ ││· │ 334 │ │ def __init__(self, sender: Select, value: str) -> None: ││· │ ❱ 335 │ │ │ super().__init__(sender) ││· │ 336 │ │ │ self.value = value ││· │ 337 │ │ │ self.select = sender ││· │ 338 ││· │ ││· │ ╭────────────────── locals ───────────────────╮ ││· │ │ self = Changed() │ ││· │ │ sender = Select(pseudo_classes={'enabled'}) │ ││· │ │ value = 1 │ ││· │ ╰─────────────────────────────────────────────╯ ││· ╰─────────────────────────────────────────────────────────────────────────────────────────────────────╯│· TypeError: Message.__init__() takes 1 positional argument but 2 were given
The text was updated successfully, but these errors were encountered:
Hi Dave
Thank you for your pull-request. It should be fixed with textua-select 0.3.3.
Best regads
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Broken since Textualize/textual#1940 / Textualize/textual@373fc95
Because of
super
call here:textual-select/textual_select/_select.py
Lines 331 to 335 in 8afe9ef
The text was updated successfully, but these errors were encountered: