CallsProcess
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
dl 0
loc 2
ccs 1
cts 1
cp 1
1
"""Contains class of Calls Process."""
2 1
from grortir.main.model.core.abstract_process import AbstractProcess
3
4
5 1
class CallsProcess(AbstractProcess):
6
    """Implementation of process with the same type of stages - calls."""
7