Skip to content

Commit

Permalink
docs(digits): fix update docstring raises type
Browse files Browse the repository at this point in the history
Fix the docstring for `Digits.update`, which raises a TypeError rather
than a ValueError if the value is not a str.
  • Loading branch information
TomJGooding committed Nov 30, 2024
1 parent 44b5298 commit 233a142
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 233a142

Please sign in to comment.