MCPcopy
hub / github.com/fastapi/typer / flush

Method flush

typer/_click/utils.py:383–390  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

381 self.wrapped = wrapped
382
383 def flush(self) -> None:
384 try:
385 self.wrapped.flush()
386 except OSError as e: # pragma: no cover
387 import errno
388
389 if e.errno != errno.EPIPE:
390 raise
391
392 def __getattr__(self, attr: str) -> Any:
393 return getattr(self.wrapped, attr)

Callers 5

render_finishMethod · 0.45
render_progressMethod · 0.45
raw_terminalFunction · 0.45
echoFunction · 0.45
writeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected