Paper   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
c 3
b 0
f 0
dl 0
loc 3
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 2 1
1
import tkinter
2
3
4
class Paper(tkinter.Frame):  # pragma : no cover
5
    def __init__(self, master, coding, data):
6
        super(Paper, self).__init__(master)
7
8
9
if __name__ == "__main__":
10
    Paper("config.yml", None)
11