Skip to content

Commit

Permalink
[BugFix] Refactor composite feature observer to use feature type valu…
Browse files Browse the repository at this point in the history
…es in output to avoid differences between Python versions
  • Loading branch information
Pabloo22 committed May 27, 2024
1 parent 5d7165a commit bf7cced
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ def __str__(self):
out = [f"{self.__class__.__name__}:"]
out.append("-" * (len(out[0]) - 1))
for feature_type, dataframe in self.features_as_dataframe.items():
out.append(f"{feature_type}:")
out.append(f"{feature_type.value}:")
out.append(dataframe.to_string())
return "\n".join(out)

0 comments on commit bf7cced

Please sign in to comment.