Commit 67e5b0a1 authored by yurievnamaria's avatar yurievnamaria
Browse files

formatting

parent 16eb424b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -750,8 +750,9 @@ class ConvMolFeaturizer(MolecularFeaturizer):
      nodes = np.concatenate([nodes, master_atom_features], axis=0)

    # Get bond lists with reverse edges included
    edge_list = [(b.GetBeginAtomIdx(), b.GetEndAtomIdx())
                 for b in mol.GetBonds()]
    edge_list = [
      (b.GetBeginAtomIdx(), b.GetEndAtomIdx()) for b in mol.GetBonds()
    ]

    # Get canonical adjacency list
    canon_adj_list = [[] for mol_id in range(len(nodes))]