message_manager   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 6
dl 0
loc 9
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A MessageManager.update() 0 3 1
1
from abc import ABC, abstractmethod
2
3
4
class MessageManager(ABC):
5
6
    @abstractmethod
7
    def update(self):
8
        ...
9