From 33bbdf14a3e0285c985e7352dae81849c7f8a8c1 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 24 Feb 2023 17:11:14 +0000 Subject: [PATCH] docstring --- src/textual/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual/app.py b/src/textual/app.py index ed3adc280..44d20e76f 100644 --- a/src/textual/app.py +++ b/src/textual/app.py @@ -444,7 +444,7 @@ class App(Generic[ReturnType], DOMNode): @contextmanager def batch_update(self) -> Generator[None, None, None]: - """Suspend all repaints until the end of the batch.""" + """A context manager to suspend all repaints until the end of the batch.""" self._begin_batch() try: yield