Skip to content

Commit 54dd67f

Browse files
committed
style: suppress F401 for public API re-exports
1 parent 7ca3e85 commit 54dd67f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

investing_algorithm_framework/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
select_backtest_date_ranges, rank_results, create_weights, \
33
get_missing_timeseries_data_entries, fill_missing_timeseries_data, \
44
create_markdown_table, analyze_backtest_windows, \
5-
plot_backtest_windows, plot_window_correlation_matrix
5+
plot_backtest_windows, plot_window_correlation_matrix # noqa: F401
66
from .app import App, Algorithm, \
77
TradingStrategy, StatelessAction, Task, AppHook, Context, \
88
add_html_report, BacktestReport, \
@@ -33,7 +33,7 @@
3333
CommissionModel, NoCommission, PercentageCommission, FixedCommission, \
3434
FillModel, FullFill, VolumeBasedFill, \
3535
FXRateProvider, StaticFXRateProvider, \
36-
ScheduledDeposit, SyncResult, PortfolioOutOfSyncError
36+
ScheduledDeposit, SyncResult, PortfolioOutOfSyncError # noqa: F401
3737
from .infrastructure import AzureBlobStorageStateHandler, \
3838
CSVOHLCVDataProvider, CSVTickerDataProvider, CSVURLDataProvider, \
3939
JSONURLDataProvider, ParquetURLDataProvider, \

0 commit comments

Comments
 (0)