Completed
Push — master ( 5cbcf8...d3d059 )
by Matthias
01:08
created

Encoder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A encode() 0 7 1
1
class Encoder(object):
2
    @staticmethod
3
    def encode(msg):
4
        """
5
        Don't change the message at all
6
        :param msg:
7
        """
8
        return msg
9