Commit d8018ae8 authored by peastman's avatar peastman
Browse files

Attempt to fix error on Python 2.7

parent 1c07a01a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1281,8 +1281,8 @@ class RdkitGridFeaturizer(ComplexFeaturizer):
        protein_pdb_lines = protein_file.readlines()
      results.append(
          pool.apply_async(
              self._featurize_complex,
              (ligand_ext, mol_lines, protein_pdb_lines, log_message)))
              RdkitGridFeaturizer._featurize_complex,
              (self, ligand_ext, mol_lines, protein_pdb_lines, log_message)))
    pool.close()
    features = []
    for result in results: