Remove unnecessary change found during over shoulder review

pull/11921/head
Graham Hammond 2019-11-25 13:43:28 +00:00
parent 32a9a8b9f6
commit c223ac99b3
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class _Parser(with_metaclass(ABCMeta, object)):
return
obj_split = sep + basename(object_name)
for module_path, contents in list(self.modules.items()):
for module_path, contents in self.modules.items():
if module_path.endswith(obj_split) or module_path == object_name:
contents.setdefault(section, 0)
contents[section] += size