Skip to content

Commit c223ac9

Browse files
committed
Remove unnecessary change found during over shoulder review
1 parent 32a9a8b commit c223ac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/memap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def module_add(self, object_name, size, section):
7676
return
7777

7878
obj_split = sep + basename(object_name)
79-
for module_path, contents in list(self.modules.items()):
79+
for module_path, contents in self.modules.items():
8080
if module_path.endswith(obj_split) or module_path == object_name:
8181
contents.setdefault(section, 0)
8282
contents[section] += size

0 commit comments

Comments
 (0)