Skip to content

Commit

Permalink
fix: typo resulted in cache breaking
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Nov 10, 2022
1 parent bc74ae3 commit fdd47d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,10 @@ def _flatten_temporal_values_to_df( # noqa pylint: disable=too-many-locals

if verbose:
msg.good(
f"Returning {df.shape[0]} rows of flattened dataframe with {value_cols}",
f"Returning {df.shape[0]} rows of flattened dataframe for {output_spec.get_col_str()}",
)

return df[[pred_time_uuid_col_name] + output_spec.get_col_str()]
return df[[pred_time_uuid_col_name, output_spec.get_col_str()]]

def _generate_values_for_cache_checking(
self,
Expand Down

0 comments on commit fdd47d7

Please sign in to comment.