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

Encoder.encode()   A

Complexity

Conditions 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 10
Bugs 0 Features 1
Metric Value
cc 1
dl 0
loc 7
rs 9.4285
c 10
b 0
f 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