Merge pull request #57 from aguzererler/remove-unused-imports-alpha-vantage-5385473624944698804
🧹 [Code Health] Remove unused imports in alpha_vantage.py
This commit is contained in:
commit
a42676d8b6
|
|
@ -1,5 +1 @@
|
|||
# Import functions from specialized modules
|
||||
from .alpha_vantage_stock import get_stock
|
||||
from .alpha_vantage_indicator import get_indicator
|
||||
from .alpha_vantage_fundamentals import get_fundamentals, get_balance_sheet, get_cashflow, get_income_statement
|
||||
from .alpha_vantage_news import get_news, get_global_news, get_insider_transactions
|
||||
|
|
@ -19,13 +19,15 @@ from .yfinance_scanner import (
|
|||
get_industry_performance_yfinance,
|
||||
get_topic_news_yfinance,
|
||||
)
|
||||
from .alpha_vantage import (
|
||||
get_stock as get_alpha_vantage_stock,
|
||||
get_indicator as get_alpha_vantage_indicator,
|
||||
from .alpha_vantage_stock import get_stock as get_alpha_vantage_stock
|
||||
from .alpha_vantage_indicator import get_indicator as get_alpha_vantage_indicator
|
||||
from .alpha_vantage_fundamentals import (
|
||||
get_fundamentals as get_alpha_vantage_fundamentals,
|
||||
get_balance_sheet as get_alpha_vantage_balance_sheet,
|
||||
get_cashflow as get_alpha_vantage_cashflow,
|
||||
get_income_statement as get_alpha_vantage_income_statement,
|
||||
)
|
||||
from .alpha_vantage_news import (
|
||||
get_insider_transactions as get_alpha_vantage_insider_transactions,
|
||||
get_news as get_alpha_vantage_news,
|
||||
get_global_news as get_alpha_vantage_global_news,
|
||||
|
|
|
|||
Loading…
Reference in New Issue