Total Complexity | 1 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from jacked import injectable |
||
2 | from test_resources.color import Color |
||
3 | |||
4 | |||
5 | @injectable() |
||
6 | class Green(Color): |
||
7 | def name(self): |
||
8 | return 'GREEN' |
||
9 |