Skip to content

Commit b6ced5d

Browse files
committed
Fix error message
1 parent 3ea66a8 commit b6ced5d

File tree

1 file changed

+1
-1
lines changed
  • investing_algorithm_framework/app

1 file changed

+1
-1
lines changed

investing_algorithm_framework/app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ def check_data_completeness(
850850
if completeness < 100:
851851
raise DataError(
852852
f"Data completeness for data source "
853-
f"{data_source.data_provider_identifier} "
853+
f"{data_source.identifier} "
854854
f"({data_source.symbol}) is {completeness:.2f}% "
855855
f"complete. Missing data points: {len(missing)}"
856856
)

0 commit comments

Comments
 (0)