plan to refactor get_company_financials; tests changed accordingly

This commit is contained in:
2021-12-03 11:46:39 +01:00
parent a6b3c57021
commit 68f3e428ab
2 changed files with 29 additions and 31 deletions

View File

@ -135,6 +135,12 @@ async def get_cash_flow_statement(*ticker_symbols: str, quarterly: bool = False,
}
@in_async_session
async def _get_single_company_financials(ticker_symbol: str, quarterly: bool = False,
session: ClientSession = None) -> Dict[str, ResultDict]:
pass
@in_async_session
async def get_company_financials(*ticker_symbols: str, quarterly: bool = False,
session: ClientSession = None) -> Union[Dict[str, ResultDict],