Commit 0f9068e2a5e5d03fe263317472366456c2b71298
1 parent
9e599160
Exists in
master
and in
68 other branches
ENH: Removed list of list from dicom_grouper
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/reader/dicom_grouper.py
... | ... | @@ -298,7 +298,7 @@ class DicomGroups: |
298 | 298 | #the number of previously existing number is |
299 | 299 | #greater or equal then the group keeps up, |
300 | 300 | #but maintains the same group of positions. |
301 | - if len(self.groups_dcm.keys()) > len(groups_dcm_.keys()): | |
301 | + if len(self.groups_dcm.keys()) < len(groups_dcm_.keys()): | |
302 | 302 | self.groups_dcm = groups_dcm_ |
303 | 303 | |
304 | 304 | for j in xrange(len(self.groups_dcm.keys())): | ... | ... |