Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/textual/widgets/_digits.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

if TYPE_CHECKING:
from textual.app import RenderResult

from textual.geometry import Size
from textual.renderables.digits import Digits as DigitsRenderable
from textual.widget import Widget
Expand Down Expand Up @@ -59,7 +60,7 @@ def update(self, value: str) -> None:
value: New value to display.

Raises:
ValueError: If the value isn't a `str`.
TypeError: If the value isn't a `str`.
"""
if not isinstance(value, str):
raise TypeError("value must be a str")
Expand Down
Loading