Skip to content

Commit

Permalink
fix: style
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphrass committed Jun 20, 2024
1 parent bd22026 commit 5e4e436
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion butterfree/configs/db/cassandra_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,9 @@ def translate(self, schema: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
cassandra_schema.append(
{
"column_name": features["column_name"],
"type": cassandra_mapping[str(features["type"]).replace("()", "").lower()],
"type": cassandra_mapping[
str(features["type"]).replace("()", "").lower()
],
"primary_key": features["primary_key"],
}
)
Expand Down

0 comments on commit 5e4e436

Please sign in to comment.