We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8a1632 commit 0130d67Copy full SHA for 0130d67
stock_analysis/utils.py
@@ -78,7 +78,7 @@ def validate_wrapper(self, *args, **kwargs):
78
raise ValueError('Must pass in a pandas `DataFrame`')
79
if columns.difference(df.columns):
80
raise ValueError(
81
- f'Dataframe must contain the following columns: {columns}'
+ f'DataFrame must contain the following columns: {columns}'
82
)
83
return method(self, *args, **kwargs)
84
return validate_wrapper
0 commit comments