Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
kierandidi committed Jul 14, 2024
1 parent bf6abdb commit d866b27
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions graphein/ml/datasets/pdb_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,15 +643,12 @@ def _parse_cath_code(self) -> Dict[str, str]:
with gzip.open(
self.root_dir / self.cath_id_cath_code_filename, "rt"
) as f:
print(f)
for line in f:
print(line)
try:
cath_id, cath_version, cath_code, cath_segment = (
line.strip().split()
)
cath_mapping[cath_id] = cath_code
print(cath_id, cath_code)
except ValueError:
continue
return cath_mapping
Expand Down

0 comments on commit d866b27

Please sign in to comment.