Ejemplo n.º 1
0
class CLIData(object):
    """
    Helper class to store data to be passed between CLI commands.
    """

    def __init__(self):
        self.vsq = VSQFileGroup()
        self.target = TargetGroup()

    def populate_vsq(self):
        """
        Uses the cached VSQ files to populate the cached target group.
        """
        self.target.populate_vsq(self.vsq)
Ejemplo n.º 2
0
 def __init__(self):
     self.vsq = VSQFileGroup()
     self.target = TargetGroup()