docstring changelog

This commit is contained in:
Will McGugan 2024-04-20 13:17:58 +01:00
parent 8e72c8c41e
commit 40eac179b1
2 changed files with 2 additions and 0 deletions

View file

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fixed an off-by-one error in the line number of the `Document.end` property https://github.com/Textualize/textual/issues/4426
- Fixed setting scrollbar colors not updating the scrollbar https://github.com/Textualize/textual/pull/4433
- Fixed flushing in inline mode
## [0.57.0] - 2024-04-19

View file

@ -267,6 +267,7 @@ class LinuxInlineDriver(Driver):
pass
def flush(self):
"""Flush any buffered data."""
self._file.flush()
def stop_application_mode(self) -> None: