We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd4d429 commit 8356d10Copy full SHA for 8356d10
ament_clang_tidy/ament_clang_tidy/main.py
@@ -163,7 +163,7 @@ def is_unittest_source(package, file_path):
163
return ('%s/test/' % package) in file_path
164
165
def is_protobuf_source(file_name):
166
- if(file_name.endswith(".pb.cc") or file_name.endswith(".pb.h")):
+ if(file_name.endswith('.pb.cc') or file_name.endswith('.pb.h')):
167
return True
168
return False
169
0 commit comments