Skip to content

Commit

Permalink
Merge pull request Textualize#5310 from TomJGooding/docs-digits-fix-u…
Browse files Browse the repository at this point in the history
…pdate-docstring-raises-type

docs(digits): fix update docstring raises type
  • Loading branch information
willmcgugan authored Nov 30, 2024
2 parents 44b5298 + 233a142 commit a913540
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 a913540

Please sign in to comment.