Total Complexity | 1 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 10 | ||
Bugs | 0 | Features | 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 |