Skip to content

Commit

Permalink
Clean clutter
Browse files Browse the repository at this point in the history
  • Loading branch information
cschlick committed Oct 11, 2024
1 parent 5203ade commit e2e30f0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions mmtbx/geometry_restraints/geo_file_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from itertools import chain
import shlex
import re
import json
from libtbx import group_args
from libtbx.utils import Sorry
from cctbx import geometry_restraints
Expand Down Expand Up @@ -61,7 +60,7 @@ def labels_are_available(self):
@property
def i_seqs_are_available(self):
return len(self.i_seqs)>0

def _prepare(self):
# Parse Atom labels
values = []
Expand Down Expand Up @@ -543,7 +542,7 @@ def _end_entry(self, entry_start_line_number, i, entries_info):
lines_for_entry = self.lines[entry_start_line_number:i]
new_entry = entries_info.entry_class(
lines=lines_for_entry,
origin_id=entries_info.origin_id,
origin_id=entries_info.origin_id,
origin_label=entries_info.origin_label,
)
# add new_entry to somewhere
Expand Down

0 comments on commit e2e30f0

Please sign in to comment.