Files
OpenBB/openbb_platform/openbb/package/regulators.py
montezdesousa bcb1f50b05 Refactor package builder (#5880)
* 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>
2023-12-13 12:13:43 +00:00

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)