Test Failed
Push — master ( 206750...bcacd1 )
by Daniel
02:10
created

tableau_hyper_management.BasicNeeds   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A BasicNeeds.fn_optional_print() 0 3 2
1
2
3
class BasicNeeds:
4
5
    def fn_optional_print(boolean_variable, string_to_print):
6
        if boolean_variable:
7
            print(string_to_print)
8