-
Notifications
You must be signed in to change notification settings - Fork 823
New issue
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
Fix TabbedContent
type errors
#4243
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,14 @@ | |
from rich.text import Text, TextType | ||
from typing_extensions import Final | ||
|
||
from textual.await_remove import AwaitRemove | ||
|
||
from ..app import ComposeResult | ||
from ..await_complete import AwaitComplete | ||
from ..css.query import NoMatches | ||
from ..message import Message | ||
from ..reactive import reactive | ||
from ..widget import Widget | ||
from ..widget import AwaitMount, Widget | ||
from ._content_switcher import ContentSwitcher | ||
from ._tabs import Tab, Tabs | ||
|
||
|
@@ -430,13 +432,19 @@ def add_pane( | |
pane = self._set_id(pane, tabs.tab_count + 1) | ||
assert pane.id is not None | ||
pane.display = False | ||
|
||
async def _add_part(awaitable: AwaitComplete | AwaitMount) -> None: | ||
await awaitable | ||
|
||
return AwaitComplete( | ||
tabs.add_tab( | ||
ContentTab(pane._title, pane.id), | ||
before=before if before is None else ContentTab.add_prefix(before), | ||
after=after if after is None else ContentTab.add_prefix(after), | ||
_add_part( | ||
tabs.add_tab( | ||
ContentTab(pane._title, pane.id), | ||
before=before if before is None else ContentTab.add_prefix(before), | ||
after=after if after is None else ContentTab.add_prefix(after), | ||
) | ||
), | ||
self.get_child_by_type(ContentSwitcher).mount(pane), | ||
_add_part(self.get_child_by_type(ContentSwitcher).mount(pane)), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This actually seems like a flaw. The |
||
) | ||
|
||
def remove_pane(self, pane_id: str) -> AwaitComplete: | ||
|
@@ -449,7 +457,7 @@ def remove_pane(self, pane_id: str) -> AwaitComplete: | |
An optionally awaitable object that waits for the pane to be removed | ||
and the Cleared message to be posted. | ||
""" | ||
removal_awaitables = [ | ||
removal_awaitables: list[AwaitComplete | AwaitRemove] = [ | ||
self.get_child_by_type(ContentTabs).remove_tab( | ||
ContentTab.add_prefix(pane_id) | ||
) | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem right. If you need to wrap those awaitables in a coroutine, it suggests that maybe
AwaitComplete
is type incorrectly.Maybe
AwaitComplete
needs to accept anAwaitable
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So the code was wrong anyway, you mean, and the hint tweak is moot? If so I'll close this. Was just a passing tidy-up anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It may be correct, but the typing error stems from
AwaitComplete
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay. I'll close this and flag up that AwaitComplete might need a wee bit more tinkering.