We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71395e2 commit 4563008Copy full SHA for 4563008
cpp/static_data.py
@@ -97,8 +97,8 @@ def find_variables_use(body):
97
find_variables_use(child.body)
98
99
count = 0
100
- for name,_ in sorted(static_declarations.items(),
101
- key=lambda x: x[1].start):
+ for (name, _) in sorted(static_declarations.items(),
+ key=lambda x: x[1].start):
102
if not static_use_counts[name]:
103
print("{}:{}: unused variable '{}'".format(
104
filename,
0 commit comments