Skip to content

Commit 6ad9256

Browse files
Merge pull request #1225 from Textualize/issue-1222
Fix docstring signatures.
2 parents c5ec61f + 0943d5a commit 6ad9256

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/textual/reactive.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Reactive(Generic[ReactiveType]):
4343
layout (bool, optional): Perform a layout on change. Defaults to False.
4444
repaint (bool, optional): Perform a repaint on change. Defaults to True.
4545
init (bool, optional): Call watchers on initialize (post mount). Defaults to False.
46-
always_update(bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
46+
always_update (bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
4747
"""
4848

4949
def __init__(
@@ -76,7 +76,7 @@ def init(
7676
default (ReactiveType | Callable[[], ReactiveType]): A default value or callable that returns a default.
7777
layout (bool, optional): Perform a layout on change. Defaults to False.
7878
repaint (bool, optional): Perform a repaint on change. Defaults to True.
79-
always_update(bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
79+
always_update (bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
8080
8181
Returns:
8282
Reactive: A Reactive instance which calls watchers or initialize.
@@ -292,7 +292,7 @@ class reactive(Reactive[ReactiveType]):
292292
layout (bool, optional): Perform a layout on change. Defaults to False.
293293
repaint (bool, optional): Perform a repaint on change. Defaults to True.
294294
init (bool, optional): Call watchers on initialize (post mount). Defaults to True.
295-
always_update(bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
295+
always_update (bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
296296
"""
297297

298298
def __init__(

0 commit comments

Comments
 (0)