aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/codegen/core/gen_stats_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/codegen/core/gen_stats_data.py')
-rwxr-xr-xtools/codegen/core/gen_stats_data.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/codegen/core/gen_stats_data.py b/tools/codegen/core/gen_stats_data.py
index 9b10c67afa..33faeafc16 100755
--- a/tools/codegen/core/gen_stats_data.py
+++ b/tools/codegen/core/gen_stats_data.py
@@ -277,8 +277,7 @@ with open('src/core/lib/debug/stats_data.h', 'w') as H:
print >> H, "#else"
for ctr in inst_map['Counter']:
- print >> H, ("#define GRPC_STATS_INC_%s() ") % (
- ctr.name.upper())
+ print >> H, ("#define GRPC_STATS_INC_%s() ") % (ctr.name.upper())
for histogram in inst_map['Histogram']:
print >> H, "#define GRPC_STATS_INC_%s(value)" % (
histogram.name.upper())