Completed
Pull Request — master (#3)
by Wojtek
02:05
created

grortir.main.model.core.AbstractProcess   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 100%
Metric Value
dl 0
loc 6
rs 10
ccs 3
cts 3
cp 1
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 3 1
1
"""Module which represent process which can be optimized."""
2
3
4 1
class AbstractProcess:
5
    """Class which represent process which can be optimized."""
6
7 1
    def __init__(self):
8
        """Constructor."""
9
        pass
10