Skip to content

Commit

Permalink
fix: fixes #398
Browse files Browse the repository at this point in the history
updated multiline strings
  • Loading branch information
kartikay-bagla committed Nov 13, 2021
1 parent e1956ff commit 937d240
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions chaos_genius/core/utils/kpi_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,12 @@ def _validate_date_column_is_parseable(
if is_datetime(df[date_column_name]):
return True, valid_str

generic_err_msg = f'Unable to parse "{date_column_name}" column. '
"Check that your date column is formatted properly and consistely."
out_of_bounds_msg = f'Timestamps in "{date_column_name}" were out of '
"bounds. Check that your date column is formatted properly and consistely."
generic_err_msg = f'Unable to parse "{date_column_name}" column. ' \
+ "Check that your date column is formatted properly " \
+ "and consistely."
out_of_bounds_msg = f'Timestamps in "{date_column_name}" were out of ' \
+ "bounds. Check that your date column is formatted " \
+ "properly and consistely."

if unix_unit:
# If a unix_unit is specified, it will try to convert with this unit
Expand Down

0 comments on commit 937d240

Please sign in to comment.