Skip to content

Commit d81999a

Browse files
committed
tracemalloc.py: fix indentation
1 parent 83db8fc commit d81999a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Lib/tracemalloc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ def _compare_grouped_stats(old_group, new_group):
119119
previous = old_group.pop(traceback, None)
120120
if previous is not None:
121121
stat = StatisticDiff(traceback,
122-
stat.size, stat.size - previous.size,
123-
stat.count, stat.count - previous.count)
122+
stat.size, stat.size - previous.size,
123+
stat.count, stat.count - previous.count)
124124
else:
125125
stat = StatisticDiff(traceback,
126-
stat.size, stat.size,
127-
stat.count, stat.count)
126+
stat.size, stat.size,
127+
stat.count, stat.count)
128128
statistics.append(stat)
129129

130130
for traceback, stat in old_group.items():

0 commit comments

Comments
 (0)