Skip to content

Commit 9287b45

Browse files
committed
Fix completeness check
1 parent 11441be commit 9287b45

File tree

1 file changed

+2
-2
lines changed
  • investing_algorithm_framework/app

1 file changed

+2
-2
lines changed

investing_algorithm_framework/app/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -881,8 +881,8 @@ def check_data_completeness(
881881
f"({data_source.symbol}): {str(e)}"
882882
)
883883

884-
if len(missing_data_info.keys()) > 0:
885-
return False, missing_data_info
884+
if len(missing_data_info.keys()) > 0:
885+
return False, missing_data_info
886886

887887
return True, missing_data_info
888888

0 commit comments

Comments
 (0)