def quickinfo(self):
     """
     Returns a short string describing some of the options of the actor.
     :return: the info, None if not available
     :rtype: str
     """
     return "setup: " + base.to_commandline(self.config["setup"])
 def quickinfo(self):
     """
     Returns a short string describing some of the options of the actor.
     :return: the info, None if not available
     :rtype: str
     """
     return "setup: " + base.to_commandline(self.config["setup"])
 def to_config(self, k, v):
     """
     Hook method that allows conversion of individual options.
     :param k: the key of the option
     :type k: str
     :param v: the value
     :type v: object
     :return: the potentially processed value
     :rtype: object
     """
     if k == "setup":
         return base.to_commandline(v)
     return super(DataGenerator, self).to_config(k, v)
 def to_config(self, k, v):
     """
     Hook method that allows conversion of individual options.
     :param k: the key of the option
     :type k: str
     :param v: the value
     :type v: object
     :return: the potentially processed value
     :rtype: object
     """
     if k == "setup":
         return base.to_commandline(v)
     return super(DataGenerator, self).to_config(k, v)