diff --git a/src/dynamic_graph/entity.py b/src/dynamic_graph/entity.py index 720d691a9d8fcfbcbddf293e92e4092c467cdf3a..e570914924157da88fe01b34d0813fb2bfb14574 100644 --- a/src/dynamic_graph/entity.py +++ b/src/dynamic_graph/entity.py @@ -22,7 +22,6 @@ def initEntity(self, name): commands = wrap.entity_list_commands(self.object) # for each command, add a method with the name of the command for command in commands: - print ('adding method %s in class %s' %(command, self.__class__)) setattr(self.__class__, command, commandMethod(command)) self.__class__.commandCreated = True