1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-10 06:20:57 +08:00

[949] - Remove argument internal in BaseRun::download_data. (#953)

* [949] - Remove argument internal in BaseRun::download_data.

* Fix black.

* Fix bug.
This commit is contained in:
Chia-hung Tai
2022-03-08 10:26:35 +08:00
committed by GitHub
parent 9e3d0249f7
commit 57f7ed9914
4 changed files with 4 additions and 9 deletions

View File

@@ -357,7 +357,6 @@ class BaseRun(abc.ABC):
delay=0,
start=None,
end=None,
interval="1d",
check_data_length: int = None,
limit_nums=None,
):
@@ -396,7 +395,7 @@ class BaseRun(abc.ABC):
delay=delay,
start=start,
end=end,
interval=interval,
interval=self.interval,
check_data_length=check_data_length,
limit_nums=limit_nums,
).collector_data()