Commit cc6a7e39 authored by yurievnamaria's avatar yurievnamaria
Browse files

Revert "formatting"

This reverts commit 67e5b0a1.
parent a6f8fb26
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -750,9 +750,8 @@ 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))]