add over.text.Output.flush
This commit is contained in:
parent
3f720fc9b8
commit
a08c85a4f3
1 changed files with 7 additions and 0 deletions
|
@ -355,6 +355,13 @@ class Output:
|
||||||
self.stream.write(render(output, colors))
|
self.stream.write(render(output, colors))
|
||||||
self.stream.flush()
|
self.stream.flush()
|
||||||
|
|
||||||
|
def flush(self):
|
||||||
|
"""
|
||||||
|
Dummy method for compatibility.
|
||||||
|
"""
|
||||||
|
|
||||||
|
pass
|
||||||
|
|
||||||
def __call__(self, *args, **kwargs):
|
def __call__(self, *args, **kwargs):
|
||||||
self.write(*args, **kwargs)
|
self.write(*args, **kwargs)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue