GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

kerapu.boom.boom_parameter.BoomParameter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A BoomParameter.tel() 0 11 1
1
import abc
2
3
from kerapu.lbz.Subtraject import Subtraject
4 1
5
6 1
class BoomParameter:
7
    """
8
    Abstracte klasse voor boomparameters.
9 1
    """
10
11
    # ------------------------------------------------------------------------------------------------------------------
12
    @abc.abstractmethod
13
    def tel(self, waarde, subtraject: Subtraject) -> int:
14
        """
15 1
        Geeft het aantal malen dat de boomparameter voldoet aan een waarde.
16 1
17
        :param [int|str] waarde: De waarde waartegen getest moet worden.
18
        :param kerapu.lbz.Subtraject.Subtraject subtraject: Het subtraject.
19
20
        :rtype: int
21
        """
22
        raise Exception("Not implemented")
23
24
# ----------------------------------------------------------------------------------------------------------------------
25