Skip to content

Commit 17861c9

Browse files
committed
black linting
1 parent 4c19068 commit 17861c9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

profiling/profile_mol_to_graph.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ def main():
6767

6868
graphs = []
6969
for s in tqdm(smiles):
70-
mol = dm.to_mol(s) # Doesn't need `ordered=True` because this is just to test the speed of the featurizer
70+
mol = dm.to_mol(
71+
s
72+
) # Doesn't need `ordered=True` because this is just to test the speed of the featurizer
7173
graphs.append(mol_to_graph_dict(mol, **featurizer))
7274

7375
print(graphs[0])

0 commit comments

Comments
 (0)