etlt.condition.AndCondition   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 23
ccs 0
cts 7
cp 0
rs 10
c 0
b 0
f 0
wmc 3

1 Method

Rating   Name   Duplication   Size   Complexity  
A AndCondition.match() 0 13 3
1
from etlt.condition.CompoundCondition import CompoundCondition
2
3
4
class AndCondition(CompoundCondition):
5
    """
6
    A condition or filter that match (i.e return True) if all child conditions match the row.
7
    """
8
9
    # ------------------------------------------------------------------------------------------------------------------
10
    def match(self, row):
11
        """
12
        Returns True if the row matches all child conditions. Returns False otherwise.
13
14
        :param dict row: The row.
15
16
        :rtype: bool
17
        """
18
        for condition in self._conditions:
19
            if not condition.match(row):
20
                return False
21
22
        return True
23
24
# ----------------------------------------------------------------------------------------------------------------------
25