1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-04 03:21:00 +08:00

fix CI error

This commit is contained in:
Linlang
2024-03-05 17:24:03 +08:00
parent 6ea921bd84
commit 8cf7bb3aaf
12 changed files with 24 additions and 35 deletions

View File

@@ -146,9 +146,7 @@ class DumpDataBase:
return (
self._include_fields
if self._include_fields
else set(df_columns) - set(self._exclude_fields)
if self._exclude_fields
else df_columns
else set(df_columns) - set(self._exclude_fields) if self._exclude_fields else df_columns
)
@staticmethod