Skip to content

Commit

Permalink
remove annoying tqdm
Browse files Browse the repository at this point in the history
  • Loading branch information
fgrunewald committed Jul 22, 2024
1 parent 29bfbc9 commit 92def3c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions polyply/src/generate_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
from .topology import replace_defined_interaction
from .linalg_functions import dih
from .check_residue_equivalence import group_residues_by_hash
from tqdm import tqdm
"""
Processor generating coordinates for all residues of a meta_molecule
matching those in the meta_molecule.molecule attribute.
Expand Down Expand Up @@ -337,7 +336,7 @@ class variable.
self.templates
self.volumes
"""
for graph_hash, template_graph in tqdm(template_graphs.items()):
for graph_hash, template_graph in template_graphs.items():
if graph_hash not in self.templates:
block = extract_block(meta_molecule.molecule,
template_graph,
Expand Down

0 comments on commit 92def3c

Please sign in to comment.