Skip to content

Commit

Permalink
dont enforce ROS names for constants (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelarguedas committed Apr 7, 2017
1 parent d0472bb commit 0d62436
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/dynamic_reconfigure/parameter_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ def const(self, name, type, value, descr):
'srcfile' : inspect.getsourcefile(inspect.currentframe().f_back.f_code),
'description' : descr
}
check_name(name)
check_description(descr)
self.fill_type(newconst)
self.check_type(newconst, 'value')
Expand Down
1 change: 0 additions & 1 deletion src/dynamic_reconfigure/parameter_generator_catkin.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ def const(self, name, type, value, descr):
'srcfile' : inspect.getsourcefile(inspect.currentframe().f_back.f_code),
'description' : descr
}
check_name(name)
check_description(descr)
self.fill_type(newconst)
self.check_type(newconst, 'value')
Expand Down

0 comments on commit 0d62436

Please sign in to comment.