mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-22 22:41:07 +08:00
* breakdown builder + remove black * rebuild * rebuild * rebuild * rename method * format built code without black * we still lint if it's available * fix existing tests * add linter tests * add black to dev deps * auto_build as instance method * reorder methods * typing --------- Co-authored-by: Henrique Joaquim <h.joaquim@campus.fct.unl.pt>
21 lines
458 B
Python
21 lines
458 B
Python
### THIS FILE IS AUTO-GENERATED. DO NOT EDIT. ###
|
|
|
|
|
|
from openbb_core.app.static.container import Container
|
|
|
|
|
|
class ROUTER_regulators(Container):
|
|
"""/regulators
|
|
/sec
|
|
"""
|
|
|
|
def __repr__(self) -> str:
|
|
return self.__doc__ or ""
|
|
|
|
@property
|
|
def sec(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import regulators_sec
|
|
|
|
return regulators_sec.ROUTER_regulators_sec(command_runner=self._command_runner)
|