Skip to content

Commit 4563008

Browse files
committed
Format
1 parent 71395e2 commit 4563008

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/static_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ def find_variables_use(body):
9797
find_variables_use(child.body)
9898

9999
count = 0
100-
for name,_ in sorted(static_declarations.items(),
101-
key=lambda x: x[1].start):
100+
for (name, _) in sorted(static_declarations.items(),
101+
key=lambda x: x[1].start):
102102
if not static_use_counts[name]:
103103
print("{}:{}: unused variable '{}'".format(
104104
filename,

0 commit comments

Comments
 (0)