EnvConfig.Variable.DuplicatesRemover Class Reference
Inheritance diagram for EnvConfig.Variable.DuplicatesRemover:
Collaboration diagram for EnvConfig.Variable.DuplicatesRemover:

Public Member Functions

def process (self, variable, value)
 
- Public Member Functions inherited from EnvConfig.Variable.ListProcessor
def isTarget (self, variable)
 
- Public Member Functions inherited from EnvConfig.Variable.VariableProcessor
def __init__ (self, env)
 
def isTarget (self, variable)
 
def process (self, variable, value)
 
def __call__ (self, variable, value)
 

Detailed Description

Remove duplicates entries from lists.

Definition at line 112 of file Variable.py.

Member Function Documentation

def EnvConfig.Variable.DuplicatesRemover.process (   self,
  variable,
  value 
)

Definition at line 116 of file Variable.py.

116  def process(self, variable, value):
117  val = []
118  for s in value:
119  if s not in val:
120  val.append(s)
121  return val
122 
def process(self, variable, value)
Definition: Variable.py:116

The documentation for this class was generated from the following file: