Skip to content

Commit

Permalink
fix(updating-auto-fs-creation): remove unused format
Browse files Browse the repository at this point in the history
  • Loading branch information
albjoaov committed Mar 8, 2024
1 parent 2293aaa commit 4a46ec9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions butterfree/automated/feature_set_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,6 @@ def get_features(self, sql_query: str, df: Optional[DataFrame] = None) -> str:
"""
features_formatted.append(feature_string)

final_string = ("features=[" "\t{}" " ],\n" "),").format(
"".join(features_formatted)
)
final_string = ("features=[\t{}],\n),").format("".join(features_formatted))

return final_string

0 comments on commit 4a46ec9

Please sign in to comment.