Completed
Push — develop ( 1028e8...dc239e )
by Jace
01:49
created

describe_display()   A

Complexity

Conditions 2

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A it_shows_text() 0 2 1
1
# pylint: disable=unused-variable
2
3
4
from verchew import utils
5
6
7
def describe_display():
8
9
    def it_shows_text():
10
        utils.display("foobar")
11