Completed
Pull Request — master (#34)
by Wojtek
01:41
created

grortir.main.model.processes.CallsProcess

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 100%
Metric Value
dl 0
loc 2
ccs 1
cts 1
cp 1
wmc 0
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