Skip to content

Commit

Permalink
Fix missing parantheses
Browse files Browse the repository at this point in the history
  • Loading branch information
AVHopp committed Dec 9, 2024
1 parent d01cf5c commit 0b46104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion baybe/utils/chemistry.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def smiles_to_fingerprint_features(
)
name = f"{encoding.name}_"
prefix = prefix + "_" if prefix else ""
if all("fingerprint" in f for f in fingerprint_encoder.get_feature_names_out):
if all("fingerprint" in f for f in fingerprint_encoder.get_feature_names_out()):
col_names = [
prefix + name + f.split("fingerprint")[1]
for f in fingerprint_encoder.get_feature_names_out()
Expand Down

0 comments on commit 0b46104

Please sign in to comment.