Completed
Push — master ( fe6d7a...5e9dbb )
by
unknown
02:04
created

tracim.views.controllers   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A Controller.bind() 0 2 1
1
from pyramid.config import Configurator
2
3
4
class Controller(object):
5
6
    def bind(self, configurator: Configurator):
7
        raise NotImplementedError()
8