mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-07-03 22:25:10 +08:00
* stash some changes * add more robust testing * mypy * point PR at V5 * introduce spec file * codespell * test fix * fix workflow environment setup * fix workflow environment setup * fix workflow environment setup * add pyyaml to dependencies * split lint jobs * fix workflow environment setup * fix workflow environment setup * workflow env setup * workflow env setup * clean up code comments * add auth hook entrypoints * codespell * add codegen feature * codespell * move _unpack into dispatchers for consistency with codegen packages * surface nested models in the response * fix missing coverage in CI * socrata updates * test fix * detect plotly output * add --include and --exclude flags from generate-extension command * cap test matrix at python 3.14 * no useless comments * platform controller command description split * merge URL overloads from path params * exclude none and unset from model dump --------- Co-authored-by: deeleeramone <> Co-authored-by: Copilot <copilot@github.com>
8 lines
219 B
Python
8 lines
219 B
Python
"""STDIO output adapter — alias for TsvOutput, kept for legacy callers."""
|
|
|
|
from openbb_cli.outputs.tsv import TsvOutput
|
|
|
|
|
|
class StdioOutput(TsvOutput):
|
|
"""STDIO output adapter — line-oriented TSV to stdout."""
|