Skip to content

Commit

Permalink
Change double to single quotes
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Creighton <pcreighton429@gmail.com>
  • Loading branch information
patrick-5546 committed Oct 25, 2023
1 parent dd4d429 commit 8356d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ament_clang_tidy/ament_clang_tidy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def is_unittest_source(package, file_path):
return ('%s/test/' % package) in file_path

def is_protobuf_source(file_name):
if(file_name.endswith(".pb.cc") or file_name.endswith(".pb.h")):
if(file_name.endswith('.pb.cc') or file_name.endswith('.pb.h')):
return True
return False

Expand Down

0 comments on commit 8356d10

Please sign in to comment.